Versions with this page:
Versions without this page:
GUI 元素在该状态下使用的文本颜色。
using UnityEngine; using System.Collections;public class ExampleClass : MonoBehaviour { void OnGUI() { if (GUI.skin.customStyles.Length > 0) GUI.skin.customStyles[0].onActive.textColor = Color.yellow; } }