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