Color.b 蓝色
var b : float
Description描述
Blue component of the color.
颜色中的蓝色组件。
三基色之一的蓝色通道。
using UnityEngine;
using System.Collections;
public class example : MonoBehaviour {
public Color color = Color.white;
public void Awake() {
color.b = 0;
}
}
var color : Color = Color.white;
color.b = 0;
最后修改:2010年12月16日 Thursday 20:56