Versions with this page:
Versions without this page:
Divide el color a entre el float b. Cada componente del color es escalado por separado.
a
b
using UnityEngine; using System.Collections;public class ExampleClass : MonoBehaviour { public Color grayColor = Color.white / 2; }