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