This repository has been archived on 2024-11-03. You can view files and clone it, but cannot push or open issues or pull requests.
snakeinabox/Assets/NaughtyAttributes/Scripts/Test/ProgressBar.cs
2020-07-09 11:41:01 -07:00

7 lines
189 B
C#

using UnityEngine;
public class ProgressBar : MonoBehaviour
{
[NaughtyAttributes.ProgressBar("Health", 100, NaughtyAttributes.ProgressBarColor.Orange)]
public float health = 50;
}