Manual     Reference     Scripting  
  
Scripting > Attributes > HideInInspector   
  • Menu
  • Overview
  • Runtime Classes
  • Attributes
  • Enumerations
  • Editor Classes
  • Enumerations
  • History
  • Index
  • Attributes
  • AddComponentMenu
  • ContextMenu
  • ExecuteInEditMode
  • HideInInspector
  • NonSerialized
  • RPC
  • RenderBeforeQueues
  • RequireComponent
  • Serializable
  • SerializeField

HideInInspector Class, inherits from Attribute  

Makes a variable not show up in the inspector but be serialized.

// Make the variable p not show up in the inspector
// but be serialized.
@HideInInspector
var p = 5;