label
Style used by default for GUI.Label controls.
Read time 1 minuteLast updated 5 days ago
Definition
- Type: Property
- Namespace: UnityEngine
- Assembly: UnityEngine.IMGUIModule
public GUIStyle label { get; set; }
Examples
using UnityEngine;public class Example : MonoBehaviour{ // Modifies only the label style of the current GUISkin GUIStyle style; void OnGUI() { GUI.skin.label = style; GUILayout.Label("This is a label."); }}