Color.operator Vector4 运算符 四维向量
static implicit function Vector4 (c : Color) : Vector4
Description描述
Colors can be implicitly converted to and from Vector4.
颜色能被隐式转换到Vector4,也能由Vector4转回颜色。
using UnityEngine;
using System.Collections;
public class example : MonoBehaviour {
public Vector4 aVector4 = Color.white;
}
// Convert a white color to a vector4
//转换白色到vector4
var aVector4 : Vector4 = Color.white;
最后修改:2010年12月16日 Thursday 22:42