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