PlayerCollision.UpdateDamageText C# (CSharp) 메소드

UpdateDamageText() 공개 메소드

public UpdateDamageText ( ) : void
리턴 void
    void UpdateDamageText()
    {
        if (health < 0) {
            health = 0;
        }
        healthText.text = "Health: " + health;
    }