Version: 2020.2
public byte this[int] ;

描述

分别使用 [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; } }