[BoxGroup]
Parameters
Parameter
Type
Description
Examples
[BoxGroup("Player Stats")]
public int health = 100;
[BoxGroup("Player Stats")]
public int armor = 50;
[BoxGroup("Centered Group", CenterLabel = true)]
public float centeredValue = 1f;
[BoxGroup("With Tooltip", Tooltip = "This group contains important settings")]
public bool important = true;
[BoxGroup("Hidden Header", HideHeader = true)]
public string hiddenHeaderValue = "Content only";
[BoxGroup("Hidden Header", HideHeader = true)]
public int hiddenHeaderNumber = 42;Last updated