[ProgressBar]
Support Types
Type
Description
Parameters
Parameter Name
Arguments
Description
Examples
using UnityEngine;
using RenownedGames.Apex;
public class ProgressBarExample : MonoBehaviour
{
[ProgressBar("Health")]
[Range(0, 100)]
public float health = 75;
[ProgressBar("Mana", Height = 30)]
[Range(0, 50)]
public int mana = 25;
}Last updated