PlayerCollision.UpdateDamageText C# (CSharp) Метод

UpdateDamageText() публичный Метод

public UpdateDamageText ( ) : void
Результат void
    void UpdateDamageText()
    {
        if (health < 0) {
            health = 0;
        }
        healthText.text = "Health: " + health;
    }