Version: 5.4
public static Color operator / (Color a, float b);

설명

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

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { public Color grayColor = Color.white / 2; }