Versions with this page:
Versions without this page:
Get a named GUIStyle.
using UnityEngine;public class Example : MonoBehaviour { bool b; void OnGUI() { b = GUILayout.Toggle(b, "A toggle button", GUI.skin.GetStyle("Button")); } }