Color.operator + 运算符 加法

static operator + (a : Color, b : Color) : Color

Description描述

Adds two colors together. Each component is added separately.

两个颜色相加,每个组件被分别相加。

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	public Color result = Color.blue + Color.red;
}
// blue + red = magenta
//蓝色+红色=紫红色
var result : Color = Color.blue + Color.red;
最后修改:2010年12月16日 Thursday 22:11

本脚本参考基于Unity 3.4.1f5

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