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