Versions with this page:
Versions without this page:
将颜色 a 减去颜色 /b/。每个分量分别相减。
a
using UnityEngine; using System.Collections;public class ExampleClass : MonoBehaviour { public Color redColor = Color.magenta - Color.blue; }