このページを含むバージョン:
このページを含まないバージョン:
[0]、[1]、[2] を使用して x や y や z 成分にアクセスします
x
y
z
using UnityEngine; using System.Collections;public class ExampleClass : MonoBehaviour { public Vector3 p; void Example() { p[1] = 5; } }