返回介绍

AreaScope 区域范围

发布于 2019-12-18 15:37:47 字数 1714 浏览 1161 评论 0 收藏 0

class in UnityEngine

Description 描述

Disposable helper class for managing BeginArea / EndArea.

管理BeginArea / EndArea的可支配的助手类。

BeginArea is called at construction, and EndArea is called when the instance is disposed. By default, any GUI controls made using GUILayout are placed in the top-left corner of the screen. If you want to place a series of automatically laid out controls in an arbitrary area, use GUILayout.BeginArea to define a new area for the automatic layouting system to use.

BeginArea 在结构中调用,并且当实例被配置时EndArea 被调用。默认情况下,任何GUI使用GUILayout 控制成功后被放置在屏幕的左上角位置。如果你想在任意区域放置一系列的自动布局控制,使用GUILayout.BeginArea去定义新的区域,使用自动布局系统。

Explained Area of the example.

JavaScript:

no example available in JavaScript

C#:

using UnityEngine;
 
public class ExampleClass : MonoBehaviour {
    void OnGUI() {
		using (var areaScope = new GUILayout.AreaScope(new Rect(10, 10, 100, 100))) {
	        GUILayout.Button("Click me");
    	    GUILayout.Button("Or me");
		}
    }
}

Constructors 构造函数

GUILayout.AreaScopeCreate a new AreaScope and begin the corresponding Area.
创建新的区域范围并形成相对应的区域。

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

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

发布评论

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