Hide
NoLabel

Hide the label for the field. When using on an array/list, hide label for every element.

[NoLabel] is a shortcut for [FieldLabelText(null)]

Note: NoLabel does not work with ShowInInspector. Use LabelText(null) instead.

[NoLabel] [ProgressBar(0, 100)] public int mp; [NoLabel] [PairsValueButtons("<icon=lightMeter/greenLight/>", true, "<icon=lightMeter/redLight/>", false)] public bool allowed; [Serializable, Flags] public enum Direction { [InspectorName("↑")] Up = 1, [InspectorName("→")] Right = 1 << 1, [InspectorName("↓")] Down = 1 << 2, [InspectorName("←")] Left = 1 << 3, } [NoLabel] [EnumToggleButtons] public Direction direction; [NoLabel] [GetInChildren] public Transform[] transArray;