Version: 2023.1
public static GUIContent none ;

描述

空内容的便捷写法。

using UnityEngine;

public class ExampleScript : MonoBehaviour { void OnGUI() { GUI.Button(new Rect(0, 0, 100, 20), GUIContent.none); } }