GUIContent.none
Declaration
public static GUIContent none;Описание
Сокращение для пустого содержимого.
using UnityEngine;
public class ExampleScript : MonoBehaviour { void OnGUI() { GUI.Button(new Rect(0, 0, 100, 20), GUIContent.none); } }
public static GUIContent none;Сокращение для пустого содержимого.
using UnityEngine;
public class ExampleScript : MonoBehaviour { void OnGUI() { GUI.Button(new Rect(0, 0, 100, 20), GUIContent.none); } }