Version: 5.3

BaseHierarchySort

class in UnityEditor

매뉴얼로 전환

설명

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

변수

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

Public 함수

CompareThe sorting method used to determine the order of GameObjects.