GUIStyle.none 空

static var none : GUIStyle

Description描述

Shortcut for an empty GUIStyle.

空GUIStyle的简码。

This style contains no decoration and just renders everything in the default font.

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	void OnGUI() {
		GUI.Button(new Rect(0, 0, 250, 100), "I'm very bare", GUIStyle.none);
	}
}
function OnGUI () {
	// Make a button with no decoration
	//使按钮不带有任何装饰,也就是不应用样式
	GUI.Button(Rect(0,0,250,100), "I'm very bare", GUIStyle.none);
}
最后修改:2011年1月24日 Monday 0:24

本脚本参考基于Unity 3.4.1f5

英文部分版权属©Unity公司所有,中文部分© Unity圣典 版权所有,未经许可,严禁转载 。