Select your preferred scripting language. All code snippets will be displayed in this language.
class in UnityEditor
Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.
CloseThe 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); } }
content | The content to display to quickly identify the hierarchy's mode. |
Compare | The sorting method used to determine the order of GameObjects. |