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