normal
Rendering settings for when the component is displayed normally.
Read time 1 minuteLast updated 4 days ago
Definition
- Type: Property
- Namespace: UnityEngine
- Assembly: UnityEngine.IMGUIModule
public GUIStyleState normal { get; set; }
Examples
using UnityEngine;public class Example : MonoBehaviour{ // Prints the text color that button is using. void OnGUI() { Debug.Log(GUI.skin.button.normal.textColor); }}