Versions with this page:
Versions without this page:
Subtracts color b from color a. Each component is subtracted separately.
b
a
using UnityEngine; using System.Collections;public class ExampleClass : MonoBehaviour { public Color redColor = Color.magenta - Color.blue; }