public static Color operator * (Color a, Color b);

설명

Multiplies two colors together. Each component is multiplied separately.

using UnityEngine;

public class Example : MonoBehaviour { void Start() { Color grayColor = Color.gray * Color.white; } }

public static Color operator * (Color a, float b);

설명

Multiplies color a by the float b. Each color component is scaled separately.

using UnityEngine;

public class Example : MonoBehaviour { void Start() { Color whiteColor = Color.gray * 2; } }

public static Color operator * (float b, Color a);

설명

Multiplies color a by the float b. Each color component is scaled separately.

using UnityEngine;

public class Example : MonoBehaviour { void Start() { Color whiteColor = 2 * Color.gray; } }