包含此页的版本:
不含此页的版本:
空 GUIStyle 的快捷方式。
该样式不包含任何装饰,只以默认字体呈现所有内容。
using UnityEngine;public class Example : MonoBehaviour { void OnGUI() { // Make a button with no decoration GUI.Button(new Rect(0, 0, 250, 100), "Basic Button", GUIStyle.none); } }