Versions with this page:
Versions without this page:
Suma dos colores entre sí. Cada componente del color es sumado por separado.
using UnityEngine;public class Example : MonoBehaviour { void Start() { Color magenta = Color.blue + Color.red; } }