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

GUISkin.window

建议更改

成功!

感谢您帮助我们提高 Unity 文档质量。虽然我们无法接受所有提交,但我们确实会阅读我们用户提出的每条建议的更改,并在适用时进行更新。

关闭

提交失败

由于某些原因,无法提交您建议的更改。请在几分钟后<a>重试</a>。感谢您花时间帮助我们提高 Unity 文档质量。

关闭

取消

切换到手册
public GUIStyle window;

描述

默认使用窗口控件的样式(其他资源:GUI.Window)。

using UnityEngine;

public class Example : MonoBehaviour { // Modifies only the window style of the current GUISkin

GUIStyle style; Rect windowRect = new Rect(20, 20, 120, 50);

void OnGUI() { GUI.skin.window = style; windowRect = GUILayout.Window(0, windowRect, DoMyWindow, "My Window"); }

// Make the contents of the window void DoMyWindow(int windowID) { // This button will size to fit the window if (GUILayout.Button("Hello World")) print("Got a click"); } }