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;public class Example : MonoBehaviour { void Start() { Color grayColor = Color.white / 2; } }