Version: 5.3
public static Color operator * (Color a, Color b);

설명

Multiplies two colors together. Each component is multiplied separately.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { public 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;
using System.Collections;

public class ExampleClass : MonoBehaviour { public 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;
using System.Collections;

public class ExampleClass : MonoBehaviour { public Color whiteColor = 2 * Color.gray; }