fixed wkurw
This commit is contained in:
parent
0a2e2a273c
commit
005f1ed041
1 changed files with 5 additions and 19 deletions
|
|
@ -5,27 +5,13 @@ using UnityEngine;
|
||||||
|
|
||||||
public class WkurwHandler : MonoBehaviour
|
public class WkurwHandler : MonoBehaviour
|
||||||
{
|
{
|
||||||
|
[MinValue(0), MaxValue(100)]
|
||||||
[ProgressBar("Health", 100, EColor.Red)]
|
|
||||||
public int health = 100;
|
public int health = 100;
|
||||||
|
|
||||||
[ProgressBar("Anger", 100, EColor.Yellow)]
|
[MinValue(0), MaxValue(100)]
|
||||||
public int anger = 50;
|
public int anger = 0;
|
||||||
|
|
||||||
[ProgressBar("Fear", 100, EColor.Blue)]
|
[MinValue(0), MaxValue(100)]
|
||||||
public int fear = 35;
|
public int fear = 0;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// Start is called before the first frame update
|
|
||||||
void Start()
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Update is called once per frame
|
|
||||||
void Update()
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue