Version: 2022.3
言語: 日本語
public static Color operator + (Color a, Color b);

説明

2 つの色を加算します。各成分のコンポーネントは個別に加算されます。

using UnityEngine;

public class Example : MonoBehaviour { void Start() { Color magenta = Color.blue + Color.red; } }