Color.operator *

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

Description 描述

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);

Description 描述

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);

Description 描述

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; } }