Color.operator Color 运算符 颜色
static implicit function Color (v : Vector4) : Color
Description描述
Colors can be implicitly converted to and from Vector4.
颜色能被隐式转换到Vector4,也能由Vector4转回颜色。
using UnityEngine;
using System.Collections;
public class example : MonoBehaviour {
public Color aColor = new Vector4(0.5F, 1, 0.5F, 1);
}
// Convert a vector4 to a Color
//转换vector4到颜色
var aColor : Color = Vector4(0.5,1,0.5,1);
最后修改:2010年12月16日 Thursday 22:49