Version: 2020.1
언어: 한국어

IndentLevelScope

class in UnityEditor

매뉴얼로 전환

설명

Scope for managing the indent level of the field labels.

using UnityEditor;
using UnityEngine;

class EditorGUIIndent : EditorWindow { [MenuItem("Examples/Indent usage")] static void Init() { var window = GetWindow<EditorGUIIndent>(); window.position = new Rect(0, 0, 100, 100); window.Show(); }

void OnGUI() { var obj = Selection.activeTransform; EditorGUILayout.LabelField("Name:", obj ? obj.name : "Select an Object"); if (obj) { // Indent block using (new EditorGUI.IndentLevelScope()) { EditorGUILayout.LabelField("Position:", obj.position.ToString()); EditorGUILayout.LabelField("Rotation:", obj.rotation.eulerAngles.ToString()); // Indent inner block even more using (new EditorGUI.IndentLevelScope()) { EditorGUILayout.LabelField("X:", obj.rotation.x.ToString()); EditorGUILayout.LabelField("Y:", obj.rotation.y.ToString()); EditorGUILayout.LabelField("Z:", obj.rotation.z.ToString()); EditorGUILayout.LabelField("W:", obj.rotation.w.ToString()); } EditorGUILayout.LabelField("Scale:", obj.localScale.ToString()); } } } }

생성자

EditorGUI.IndentLevelScopeCreates an IndentLevelScope and increases the EditorGUI indent level.
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961