版本: Unity 6 (6000.0)
语言English
  • C#

VerticalScope

UnityEditor 中的类

建议更改

成功!

感谢您帮助我们提高 Unity 文档的质量。尽管我们无法接受所有提交,但我们确实阅读了用户提出的每个建议更改,并在适用的情况下进行更新。

关闭

提交失败

由于某些原因,您的建议更改无法提交。请<a>稍后再试</a>。感谢您抽出时间帮助我们提高 Unity 文档的质量。

关闭

取消

描述

用于管理 BeginVertical / EndVertical 的一次性帮助程序类。

这是对 GUILayout.VerticalScope 的扩展。它可用于创建复合控件


垂直复合组。

using UnityEngine;
using UnityEditor;

// Create a Vertical Compound Button class VerticalScopeExample : EditorWindow { [MenuItem("Examples/Vertical scope usage")] static void Init() { var window = GetWindow<VerticalScopeExample>(); window.Show(); }

void OnGUI() { using (var v = new EditorGUILayout.VerticalScope("Button")) { if (GUI.Button(v.rect, GUIContent.none)) Debug.Log("Go here"); GUILayout.Label("I'm inside the button"); GUILayout.Label("So am I"); } } }

属性

rect垂直组的矩形。

构造函数

EditorGUILayout.VerticalScope创建一个新的 VerticalScope 并开始相应的垂直组。