版本:Unity 6 (6000.0)
语言中文
  • C#

GUIStyle.onActive

建议修改

成功!

感谢您帮助我们提高 Unity 文档的质量。尽管我们无法接受所有提交的修改,但我们会阅读用户建议的每项修改,并在适当时进行更新。

关闭

提交失败

由于某种原因,无法提交您建议的修改。请在几分钟后重新尝试。感谢您腾出时间帮助我们提高 Unity 文档的质量。

关闭

取消

切换到手册
public GUIStyleState onActive;

说明

元素打开且按下时的渲染设置。

using UnityEngine;

public class Example : MonoBehaviour { // Sets the text color of button to yellow when an // element is turned on and pressed down. void OnGUI() { GUI.skin.button.onActive.textColor = Color.yellow; } }