Versions with this page:
Versions without this page:
Получает именованный GUIStyle.
using UnityEngine;public class Example : MonoBehaviour { bool b; void OnGUI() { b = GUILayout.Toggle(b, "A toggle button", GUI.skin.GetStyle("Button")); } }