name
The name of this GUIStyle. Used for getting them based on name.
Read time 1 minuteLast updated 4 days ago
Definition
- Type: Property
- Namespace: UnityEngine
- Assembly: UnityEngine.IMGUIModule
public string name { get; set; }
Examples
using UnityEngine;public class Example : MonoBehaviour{ // Prints the name of the style. void OnGUI() { Debug.Log(GUI.skin.button.name); }}