Version: 2017.3
Method group is Obsolete

BaseHierarchySort

class in UnityEditor

切换到手册
Obsolete

描述

用于创建新排序的基类。

自然比较层级视图的示例。

public class AlphaNumericSort : BaseHierarchySort
{
    public override int Compare(GameObject lhs, GameObject rhs)
    {
        if (lhs == rhs) return 0;
        if (lhs == null) return -1;
        if (rhs == null) return 1;

return EditorUtility.NaturalCompare(lhs.name, rhs.name); } }