GUI.backgroundColor 背景颜色

static var backgroundColor : Color

Description描述

Global tinting color for all background elements rendered by the GUI.

This gets multiplied by color.

全局染色由GUI渲染的所有背景元素,得到乘以颜色。

参考: contentColor, color.

GUI.backgroundColor 背景颜色

Yellow Background color applied to a button.
应用给按钮一个黄色背景颜色。

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	void OnGUI() {
		GUI.backgroundColor = Color.yellow;
		GUI.Button(new Rect(10, 110, 70, 30), "A button");
	}
}
function OnGUI() {
	GUI.backgroundColor = Color.yellow;
	GUI.Button(Rect(10,110,70,30), "A button");
}
最后修改:2011年6月15日 Wednesday 10:54

本脚本参考基于Unity 3.4.1f5

英文部分版权属©Unity公司所有,中文部分© Unity圣典 版权所有,未经许可,严禁转载 。