Color.operator +
static function operator +(a: Color, b: Color): Color;
static Color operator +(Color a, Color b);
static def operator +(a as Color, b as Color) as Color
Description

Adds two colors together. Each component is added separately.

	// blue + red = magenta
	var result : Color = Color.blue + Color.red;
using UnityEngine;
using System.Collections;

public class Example : MonoBehaviour {
    public Color result = Color.blue + Color.red;
}
import UnityEngine
import System.Collections

public class Example(MonoBehaviour):

	public result as Color = (Color.blue + Color.red)