Versions with this page:
Versions without this page:
Вычитает цвет b из цвета a. Каждый из компонентов может быть вычтен по отдельности.
b
a
using UnityEngine; using System.Collections;public class ExampleClass : MonoBehaviour { public Color redColor = Color.magenta - Color.blue; }