Versions with this page:
Versions without this page:
Делит цвет a на число с плавающей точкой b. Каждый компонент цвета может быть масштабирован по отдельности.
a
b
using UnityEngine;public class Example : MonoBehaviour { void Start() { Color grayColor = Color.white / 2; } }