Color.r 红色

var r : float

Description描述

Red component of the color.

颜色中的红色组件。

三基色之一的红色通道。

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	public Color color = Color.white;
	public void Awake() {
		color.r = 0;
	}
}
var color : Color = Color.white;
color.r = 0;
最后修改:2010年12月16日 Thursday 20:56

本脚本参考基于Unity 3.4.1f5

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