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