Adds two colors together. Each component is added separately.
#pragma strict public class Example extends MonoBehaviour { function Start() { var magenta: Color = Color.blue + Color.red; } }
using UnityEngine;
public class Example : MonoBehaviour { void Start() { Color magenta = Color.blue + Color.red; } }