用于 GUI 渲染的所有背景元素的全局着色颜色。
将与 color 相乘。
另请参阅:contentColor、color。
Yellow Background color applied to a button.
using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { void OnGUI() { GUI.backgroundColor = Color.yellow; GUI.Button(new Rect(10, 10, 70, 30), "A button"); } }