将两个颜色相加。每个分量分别相加。
using UnityEngine;public class Example : MonoBehaviour { void Start() { Color magenta = Color.blue + Color.red; } }