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

GUI.contentColor

建议更改

成功!

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

关闭

提交失败

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

关闭

取消

public static Color contentColor;

描述

GUI 渲染的所有文本的着色颜色。

这将乘以 color

其他资源:backgroundColorcolor


按钮中的黄色内容颜色(字体)。

// Tints with yellow the letters of the button.

using UnityEngine; using System.Collections;

public class ExampleClass : MonoBehaviour { void OnGUI() { GUI.contentColor = Color.yellow; GUI.Button(new Rect(10, 10, 70, 30), "A button"); } }