InspectorNameAttribute

class in UnityEngine

/

Hereda de:PropertyAttribute

Cambiar al Manual

Descripción

Use this attribute on enum value declarations to change the display name shown in the Inspector.

using UnityEngine;

public enum ModelImporterIndexFormat { Auto = 0, [InspectorName("16 bits")] UInt16 = 1, [InspectorName("32 bits")] UInt32 = 2, }

Variables

displayNameName to display in the Inspector.

Constructores

InspectorNameAttributeSpecify a display name for an enum value.

Miembros heredados

Variables

orderOptional field to specify the order that multiple DecorationDrawers should be drawn in.