Version: 2017.3
public static Color operator + (Color a, Color b);

설명

Adds two colors together. Each component is added separately.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { public Color result = Color.blue + Color.red; }