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