包含此页的版本:
不含此页的版本:
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; }