包含此页的版本:
不含此页的版本:
分别使用 [0]、[1]、[2]、[3] 访问红色 (r)、绿色 (g)、蓝色 (b) 和、Alpha (a) 颜色分量。
using UnityEngine;public class Example : MonoBehaviour { Color32 color = new Color32(0, 0, 0, 0); void Start() { //The same as color.g = 255 color[1] = 255; } }