class in UnityEngine
/
Inherits from:PropertyAttribute
/
Implemented in:UnityEngine.CoreModule
Use this attribute on enum value declarations to change the display name shown in the Inspector.
Additional resources: SerializedProperty.enumDisplayNames
using UnityEngine;
public enum ModelImporterIndexFormat { Auto = 0, [InspectorName("16 bits")] UInt16 = 1, [InspectorName("32 bits")] UInt32 = 2, }
| Property | Description |
|---|---|
| displayName | Name to display in the Inspector. |
| Constructor | Description |
|---|---|
| InspectorNameAttribute | Specify a display name for an enum value. |
| Property | Description |
|---|---|
| order | Optional field to specify the order that multiple DecorationDrawers should be drawn in. |