お好みのスクリプト言語を選択すると、サンプルコードがその言語で表示されます。
Namespace: 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.
Closeこのクラスは新しいソートを作成するために使用します。
アルファベット順に並べる例です。
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 | contentはヒエラルキーモードを素早く識別するために表示します。 |
Compare | ゲームオブジェクトの順番を決定するのに使用するソートメソッドです。 |