Versions with this page:
Versions without this page:
将两个颜色相加。每个分量分别相加。
using UnityEngine; using System.Collections;public class ExampleClass : MonoBehaviour { public Color result = Color.blue + Color.red; }