Hide Label
[HideLabel]
attribute used hiding label of property.
Support Types
Any fields
Parameters
No parameters
Examples
[HideLabel]
public int value;
Note
Make sure that you have added ApexInspector namespace in your script, to get access to all attributes.
using ApexInspector;
Demo
using ApexInspector;
using UnityEngine;
public class ExampleComponent : MonoBehaviour
{
[HideLabel]
public int value;
}
Static demo