fixed wkurw

This commit is contained in:
NIMFER 2021-08-28 14:33:27 +02:00
parent 0a2e2a273c
commit 005f1ed041

View file

@ -5,27 +5,13 @@ using UnityEngine;
public class WkurwHandler : MonoBehaviour
{
[ProgressBar("Health", 100, EColor.Red)]
[MinValue(0), MaxValue(100)]
public int health = 100;
[ProgressBar("Anger", 100, EColor.Yellow)]
public int anger = 50;
[MinValue(0), MaxValue(100)]
public int anger = 0;
[ProgressBar("Fear", 100, EColor.Blue)]
public int fear = 35;
[MinValue(0), MaxValue(100)]
public int fear = 0;
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
}
}