none
Shorthand for empty content.
Read time 1 minuteLast updated 4 days ago
Definition
- Type: Field
- Namespace: UnityEngine
- Assembly: UnityEngine.IMGUIModule
[NoAutoStaticsCleanup]public static GUIContent none
Examples
using UnityEngine;public class ExampleScript : MonoBehaviour{ void OnGUI() { GUI.Button(new Rect(0, 0, 100, 20), GUIContent.none); }}