版本: Unity 6 (6000.0)
语言英语
  • C#

InspectorOrderAttribute

UnityEngine 中的类

/

继承自:PropertyAttribute

/

实现于:UnityEngine.CoreModule

建议修改

成功!

感谢您帮助我们改进 Unity 文档的质量。虽然我们不能接受所有提交的内容,但我们确实会阅读用户提出的每项建议,并在适用时进行更新。

关闭

提交失败

由于某些原因,您的建议修改无法提交。请<a>稍后再试</a>。感谢您抽出时间帮助我们改进 Unity 文档的质量。

关闭

取消

描述

在 Inspector 枚举 UI 下拉菜单中显示排序的枚举值,例如 EditorGUI.EnumPopup、PropertyField 等。此属性只能应用于枚举类型。

注意:此属性仅影响枚举 UI 顺序,不影响行为。

using UnityEngine;

public class SortedEnumExample : MonoBehaviour { // Sorts enum by value in descending order [InspectorOrder(InspectorSort.ByValue, InspectorSortDirection.Descending)] public enum SortedByValueExample { SecondItem = 2, ThirdItem = 3, FirstItem = 1 }

// Sorts enum by name in ascending order [InspectorOrder()] public enum SortedByNameExample { SecondItem, ThirdItem, FirstItem }

public SortedByValueExample sortedByValueExample; public SortedByNameExample sortedByNameExample; }

构造函数

InspectorOrderAttribute默认构造函数初始化属性,以便枚举在 UI 下拉菜单中显示为排序。

继承的成员

属性

applyToCollection使属性影响集合而不是其项目。
order可选字段,用于指定多个 DecorationDrawers 的绘制顺序。