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

本脚本参考基于Unity 3.4.1f5

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