diff --git a/Assets/Scripts/WkurwHandler.cs b/Assets/Scripts/WkurwHandler.cs index 174ea42..971ec28 100644 --- a/Assets/Scripts/WkurwHandler.cs +++ b/Assets/Scripts/WkurwHandler.cs @@ -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() - { - - } }