Color.operator *
Description 描述
Multiplies two colors together. Each component is multiplied separately.
using UnityEngine;
public class Example : MonoBehaviour { void Start() { Color grayColor = Color.gray * Color.white; } }
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; } }
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; } }