InspectorNameAttribute

class in UnityEngine

/

Inherits from:PropertyAttribute

/

Implemented in:UnityEngine.CoreModule

Description

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, }

Properties

Property Description
displayNameName to display in the Inspector.

Constructors

Constructor Description
InspectorNameAttributeSpecify a display name for an enum value.

Inherited Members

Properties

PropertyDescription
applyToCollectionMakes attribute affect collections instead of their items.
orderOptional field to specify the order that multiple DecorationDrawers should be drawn in.

Did you find this page useful? Please give it a rating: