Versions with this page:
Versions without this page:
Складывает два цвета. Каждый компонент может быть просуммирован по отдельности.
using UnityEngine;public class Example : MonoBehaviour { void Start() { Color magenta = Color.blue + Color.red; } }