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
|
||||
{
|
||||
|
||||
[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;
|
||||
|
||||
|
||||
|
||||
// Start is called before the first frame update
|
||||
void Start()
|
||||
{
|
||||
[MinValue(0), MaxValue(100)]
|
||||
public int fear = 0;
|
||||
|
||||
}
|
||||
|
||||
// Update is called once per frame
|
||||
void Update()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue