包含此页的版本:
不含此页的版本:
分别使用 [0]、[1]、[2]、[3] 访问 r、g、b、a 分量。
using UnityEngine;public class Example : MonoBehaviour { Color color = Color.white; void Start() { //The same as color.g = 5 color[1] = 5; } }