返回介绍

GUI基础

发布于 2021-06-20 00:15:03 字数 7385 浏览 1014 评论 0 收藏 0

本节讲解了用 UnityGUI 对控件 (Controls) 进行脚本编辑的基本要求。

用 UnityGUI 制作控件

UnityGUI 控件使用一种称为 OnGUI() 的特殊函数。只要包含的脚本已启用,每帧OnGUI() 函数都会被调用 - 正如 Update() 函数。

GUI 控件本身结构很简单。此结构在以下示例中较为清楚。

/* 示例等级加载器 */


// JavaScript
function OnGUI () {
	// 制作背景盒
	GUI.Box (Rect (10,10,100,90), "Loader Menu");

	// 制作第一个按钮。按下这个按钮将执行 Application.Loadlevel (1)
	if (GUI.Button (Rect (20,40,80,20), "Level 1")) {
		Application.LoadLevel (1);
	}

	// 制作第二个按钮。
	if (GUI.Button (Rect (20,70,80,20), "Level 2")) {
		Application.LoadLevel (2);
	}
}


//C#
using UnityEngine;
using System.Collections;

public class GUITest : MonoBehaviour {

	void OnGUI () {
		// Make a background box
		GUI.Box(new Rect(10,10,100,90), "Loader Menu");

		// Make the first button. If it is pressed, Application.Loadlevel (1) will be executed
		if(GUI.Button(new Rect(20,40,80,20), "Level 1")) {
			Application.LoadLevel(1);
		}

		// Make the second button.
		if(GUI.Button(new Rect(20,70,80,20), "Level 2")) {
			Application.LoadLevel(2);
		}
	}
}

此示例是一个完整的功能性等级加载器。如果您复制/粘贴此脚本并将其贴到游戏对象 (GameObject) 上,则进入播放模式 (Play Mode) 时会看到以下菜单:


由示例代码创建的加载器菜单 (Loader Menu)

我们来看看示例代码的详细信息:

第一行 GUI 命令行 GUI.Box (Rect (10,10,100,90), "Loader Menu"); 显示了带标题文本“Loader Menu”的盒 (Box) 控件。它遵循我们马上要讲解的典型 GUI 控件声明模式。

下一行 GUI 是按钮 控件 (Button Control) 声明。注意它与盒控件 (Box Control) 声明有些许不同。特别是整个按钮 (Button) 声明都置于 if 语句内。如果在运行游戏时单击此按钮 (Button),该 if 语句返回真值并执行 if 块内的任意代码。

由于 OnGUI() 代码在每一帧获得调用,因此您不必明确创建或破坏 GUI 控件。声明该控件 (Control) 的行与创建它的行是同一行。如果您需要在特定时间显示控件 (Control),可使用任何一种脚本逻辑来操作。

/* Flashing button example */


// JavaScript
function OnGUI () {
	if (Time.time % 2 < 1) {
		if (GUI.Button (Rect (10,10,200,20), "Meet the flashing button")) {
			print ("You clicked me!");
		}
	}
}


// C#
using UnityEngine;
using System.Collections;

public class GUITest : MonoBehaviour {

	void OnGUI () {
		if (Time.time % 2 < 1) {
			if (GUI.Button (new Rect (10,10,200,20), "Meet the flashing button")) {
				print ("You clicked me!");
			}
		}
	}
}

此处,GUI.Button() 仅每隔一秒获得调用,因此此按钮会出现然后消失。因此,只有在按钮可见时用户才能单击它。

正如您所见,当 GUI 控件 (Control) 显示并可用时,您可使用任何需要的逻辑进行控制。现在我们来探究每个控件 (Control) 声明的详细信息。

控件剖析

声明 GUI 控件 (Control) 时必需有三条关键信息:

类型 (位置、内容) 观察到此结构是一个有两个参数的函数。现在我们来探究此结构的详细信息。

类型

类型 (Type) 是控件类型 (Control Type),而且是通过调用 UnityGUI 类或 GUILayout 类 ,中的一个函数进行声明的。GUILayout 类将在指南的 布局模式 (Layout Modes) 部分进行详细讨论。例如,GUI.Label() 将创建一个非互动式的标签。所有不同的控件类型稍后会在指南的控件部分进行解释。

位置

位置 (Position) 是任何 GUI 控件 (Control) 函数中的第一个参数。参数本身设置有 Rect() 函数。Rect() 定义四种属性:最左端位置、最顶端位置、总宽度和总高度。所有这些值都是整数,这与像素值对应。所有 UnityGUI 控件都在屏幕空间 (Screen Space)中运行,该屏幕空间是以像素为单位的已发布播放器的分辨率

坐标系统以左上角为基点。Rect(10, 20, 300, 100) 定义矩形 (Rectangle),该矩形始于坐标:10,20,结束于坐标 310,120。还要重复一下,Rect() 中的第二对值是总宽度和高度,而非控件的结束坐标。这就是为什么上文提及示例的结束坐标是 310,120 而不是 300,100。

使用Screen.width 和 Screen.height 属性可使屏幕空间的总尺寸在播放器中可用。以下示例可能有助于阐明其完成方式:

/* Screen.width & Screen.height 示例 */


// JavaScript
function OnGUI () {
	GUI.Box (Rect (0,0,100,50), "Top-left");
	GUI.Box (Rect (Screen.width - 100,0,100,50), "Top-right");
	GUI.Box (Rect (0,Screen.height - 50,100,50), "Bottom-left");
	GUI.Box (Rect (Screen.width - 100,Screen.height - 50,100,50), "Bottom-right");
}


// C#
using UnityEngine;
using System.Collections;

public class GUITest : MonoBehaviour {

	void OnGUI(){
		GUI.Box (new Rect (0,0,100,50), "Top-left");
		GUI.Box (new Rect (Screen.width - 100,0,100,50), "Top-right");
		GUI.Box (new Rect (0,Screen.height - 50,100,50), "Bottom-left");
		GUI.Box (new Rect (Screen.width - 100,Screen.height - 50,100,50), "Bottom-right");
	}

}

通过以上示例定位的盒

内容

用于 GUI 控件 (Control) 的第二个参数是用控件 (Control) 显示的实际内容。很多时候您需要在控件 (Control) 上显示某个文本或图像。如需显示文本,请将字符串作为内容 (Content) 参数进行传递,如下所示:

/* 字符串内容示例 */


// JavaScript
function OnGUI () {
	GUI.Label (Rect (0,0,100,50), "This is the text string for a Label Control");
}


// C#
using UnityEngine;
using System.Collections;

public class GUITest : MonoBehaviour {

	void OnGUI () {
		GUI.Label (new Rect (0,0,100,50), "This is the text string for a Label Control");
	}

}

如需显示图像,请声明二维纹理 (Texture2D) 公共变量,并将变量名称作为内容参数进行传递,如下所示:

/* 二维纹理内容示例 */


// JavaScript
var controlTexture : Texture2D;

function OnGUI () {
	GUI.Label (Rect (0,0,100,50), controlTexture);
}


// C#
public Texture2D controlTexture;
  ...

void OnGUI () {
	GUI.Label (new Rect (0,0,100,50), controlTexture);
}

这里是一个更接近真实世界场景的示例:

/* 按钮内容示例 */


// JavaScript
var icon : Texture2D;

function OnGUI () {
	if (GUI.Button (Rect (10,10, 100, 50), icon)) {
		print ("you clicked the icon");
	}

	if (GUI.Button (Rect (10,70, 100, 20), "This is text")) {
		print ("you clicked the text button");
	}
}


// C#
using UnityEngine;
using System.Collections;

public class GUITest : MonoBehaviour {

	public Texture2D icon;

	void OnGUI () {
		if (GUI.Button (new Rect (10,10, 100, 50), icon)) {
			print ("you clicked the icon");
		}

		if (GUI.Button (new Rect (10,70, 100, 20), "This is text")) {
			print ("you clicked the text button");
		}
	}

}

由以上示例创建的按钮 (Button)

如需让图像和文本在 GUI 控件 (Control) 上一并显示,还有第三种选择。提供 一个GUIContent 对象作为内容 (Content) 参数,并定义显示在 GUIContent 中的字符串和图像。

/* 使用 GUIContent 显示图像和字符串 */


// JavaScript
var icon : Texture2D;

function OnGUI () {
	GUI.Box (Rect (10,10,100,50), GUIContent("This is text", icon));
}


// C#
using UnityEngine;
using System.Collections;

public class GUITest : MonoBehaviour {

	public Texture2D icon;

	void OnGUI () {
		GUI.Box (new Rect (10,10,100,50), new GUIContent("This is text", icon));
	}

}

您还可以在 GUIContent 中定义工具提示 (Tooltip)。当鼠标在工具提示上方悬停时,可将其显示在 GUI 中的其他地方。

/* 使用 GUIContent 显示工具提示*/


// JavaScript
function OnGUI () {
	// 该行向 GUI 工具提示输入“This is the tooltip”
	GUI.Button (Rect (10,10,100,20), GUIContent ("Click me", "This is the tooltip"));
	// 该行读取并显示 GUI 工具提示的内容
	GUI.Label (Rect (10,40,100,20), GUI.tooltip);
}


// C#
using UnityEngine;
using System.Collections;

public class GUITest : MonoBehaviour {

	void OnGUI () {
		// 该行向 GUI 工具提示输入“This is the tooltip”
		GUI.Button (new Rect (10,10,100,20), new GUIContent ("Click me", "This is the tooltip"));

		// 该行读取并显示 GUI 工具提示的内容
		GUI.Label (new Rect (10,40,100,20), GUI.tooltip);
	}

}

如果您有足够胆量,还可以使用 GUIContent 显示字符串、图标和工具提示!

/* 使用 GUIContent 显示图像、字符串和工具提示 */


// JavaScript
var icon : Texture2D;

function OnGUI () {
	GUI.Button (Rect (10,10,100,20), GUIContent ("Click me", icon, "This is the tooltip"));
	GUI.Label (Rect (10,40,100,20), GUI.tooltip);
}


// C#
using UnityEngine;
using System.Collections;

public class GUITest : MonoBehaviour {

	public Texture2D icon;

	void OnGUI () {
		GUI.Button (new Rect (10,10,100,20), new GUIContent ("Click me", icon, "This is the tooltip"));
		GUI.Label (new Rect (10,40,100,20), GUI.tooltip);
	}

}

丰富示例列表的 GUIContent 构造函数 的脚本参考页面。

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

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

发布评论

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