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;public class Example : MonoBehaviour { void Start() { Color redColor = Color.magenta - Color.blue; } }