このページを含むバージョン:
このページを含まないバージョン:
r は [0]、g は [1]、b は [2]、a は [3] に格納されます。
using UnityEngine; using System.Collections;public class ExampleClass : MonoBehaviour { public Color p; void Example() { p[1] = 5; } }