GUIContent.none 空

static var none : GUIContent

Description描述

Shorthand for empty content.

对于空内容的简写形式。

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	void OnGUI() {
		GUI.Button(new Rect(0, 0, 100, 20), GUIContent.none);
	}
}
// Draws a button without any text.
//绘制一个没有文本的空按钮
function OnGUI () {
	GUI.Button (Rect (0, 0, 100, 20), GUIContent.none);
}
最后修改:2011年1月3日 Monday 0:17

本脚本参考基于Unity 3.4.1f5

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