operator +(Color, Color)
Adds two colors together. Each component is added separately.
Read time 1 minuteLast updated 9 days ago
Definition
- Type: Operator
- Namespace: UnityEngine
- Assembly: UnityEngine.CoreModule
public static Color operator +(Color a, Color b)
Parameters
Returns
Type | Description |
|---|---|
| Color |
Examples
using UnityEngine;public class Example : MonoBehaviour{ void Start() { Color magenta = Color.blue + Color.red; }}