From 005f1ed0419d11aa3c70429eca3c332a9944d11c Mon Sep 17 00:00:00 2001 From: NIMFER Date: Sat, 28 Aug 2021 14:33:27 +0200 Subject: [PATCH] fixed wkurw --- Assets/Scripts/WkurwHandler.cs | 24 +++++------------------- 1 file changed, 5 insertions(+), 19 deletions(-) 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() - { - - } }