Hide Label Attribute

HideLabel is used on any property, and hides the label in the inspector. Use this to hide the label of properties in the inspector.

[Title("Wide Colors")] [HideLabel] [ColorPalette("Fall")] public Color WideColor1; [HideLabel] [ColorPalette("Fall")] public Color WideColor2; [Title("Wide Vector")] [HideLabel] public Vector3 WideVector1; [HideLabel] public Vector4 WideVector2; [Title("Wide String")] [HideLabel] public string WideString; [Title("Wide Multiline Text Field")] [HideLabel] [MultiLineProperty] public string WideMultilineTextField = "";