Ejemplo n.º 1
0
 void UpdateText()
 {
     HealthText.text = Mathf.RoundToInt(HealthModel.GetHealth()) + "/" +
                       Mathf.RoundToInt(HealthModel.GetMaximumHealth());
 }
Ejemplo n.º 2
0
 private void UpdateText() //Sets the text value of the healthbar as a ratio
 {
     HealthText.text = Mathf.RoundToInt(HealthModel.GetHealth()) + "/" +
                       Mathf.RoundToInt(HealthModel.GetMaximumHealth());
 }