Versions with this page:
Versions without this page:
分别使用 [0]、[1]、[2]、[3] 访问 r、g、b、a 分量。
using UnityEngine; using System.Collections;public class ExampleClass : MonoBehaviour { public Color p; void Example() { p[1] = 5; } }