返回介绍

GUI.ModalWindow 模式窗口

发布于 2019-12-18 15:37:45 字数 4615 浏览 1278 评论 0 收藏 0

JavaScript => public static function ModalWindow(id: int, clientRect: Rect, func: GUI.WindowFunction, text: string): Rect;
JavaScript =>public static function ModalWindow(id: int, clientRect: Rect, func: GUI.WindowFunction, image: Texture): Rect;
JavaScript =>public static function ModalWindow(id: int, clientRect: Rect, func: GUI.WindowFunction, content: GUIContent): Rect;
JavaScript =>public static function ModalWindow(id: int, clientRect: Rect, func: GUI.WindowFunction, text: string, style: GUIStyle): Rect;
JavaScript =>public static function ModalWindow(id: int, clientRect: Rect, func: GUI.WindowFunction, image: Texture, style: GUIStyle): Rect;
JavaScript =>public static function ModalWindow(id: int, clientRect: Rect, func: GUI.WindowFunction, content: GUIContent, style: GUIStyle): Rect;

C# => public static Rect ModalWindow(int id, Rect clientRect, GUI.WindowFunction func, string text);
C# =>public static Rect ModalWindow(int id, Rect clientRect, GUI.WindowFunction func, Texture image);
C# =>public static Rect ModalWindow(int id, Rect clientRect, GUI.WindowFunction func, GUIContent content);
C# =>public static Rect ModalWindow(int id, Rect clientRect, GUI.WindowFunction func, string text, GUIStyle style);
C# =>public static Rect ModalWindow(int id, Rect clientRect, GUI.WindowFunction func, Texture image, GUIStyle style);
C# =>public static Rect ModalWindow(int id, Rect clientRect, GUI.WindowFunction func, GUIContent content, GUIStyle style);

Parameters 参数

idA unique id number.
唯一的标志数字。
clientRectPosition and size of the window.
窗口的大小和位置。
funcA function which contains the immediate mode GUI code to draw the contents of your window.
包含直接使用GUI代码绘制你的窗口的内容的模式的函数。
textText to appear in the title-bar area of the window, if any.
用于窗口标题区域的文本,若有的话。
imageAn image to appear in the title bar of the window, if any.
用于窗口标题栏的图像,如果有的话。
contentGUIContent to appear in the title bar of the window, if any.
用于窗口标题栏的界面内容,如果有的话。
styleStyle to apply to the window.
用于窗口标题栏的格式。

Description 描述

Show a Modal Window.

显示模式窗口。

Similar to GUI.Window, however the window will always be on top of all other GUI, and while displayed, is guaranteed to be sole recipient of all GUI input and events. While a ModalWindow is being displayed, other controls will not be processing input. Note that only one ModalWindow can be displayed at a time.

于GUI.Window相似,但是该窗口总是在其他GUI的上方并且显示,该窗口保证是所有GUI输入和事件的唯一容器。当ModalWindow 被显示时,其他控制台将不会处理输入。注意一个ModalWindow仅可以显示一次。

gui

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文