Version: 2020.3
public float this[int] ;

描述

分别使用 [0] 或 [1] 访问 xy 分量。

using UnityEngine;

public class Example : MonoBehaviour { void Start() { Vector2 p = new Vector2(); p[1] = 5; // the same as p.y = 5 } }