包含此页的版本:
不含此页的版本:
分别使用 [0] 或 [1] 访问 x 或 y 分量。
x
y
using UnityEngine;public class Example : MonoBehaviour { void Start() { Vector2 p = new Vector2(); p[1] = 5; // the same as p.y = 5 } }