Version: 2019.3
public static GUIContent none ;

説明

空 GUIContent オブジェクトを作成します

using UnityEngine;

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