Legacy Documentation: Version 4.5.0

Script language:

  • JS
  • C#
  • Boo
Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

BaseHierarchySort

Namespace: UnityEditor

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

Variables

contentThe content to display to quickly identify the hierarchy's mode.

Functions

CompareThe sorting method used to determine the order of GameObjects.