Versions with this page:
Versions without this page:
Sustrae el color b del color a. Cada componente del color es sustraído por separado.
b
a
using UnityEngine; using System.Collections;public class ExampleClass : MonoBehaviour { public Color redColor = Color.magenta - Color.blue; }