Legacy Documentation: Version 2018.2 (Go to current version)
LanguageEnglish
  • C#
Method group is Obsolete

BaseHierarchySort

class in UnityEditor

/

Implemented in:UnityEditor

Obsolete

Description

The base class used to create new sorting.

Example of a natural compare hierarchy.

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); } }

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