Version: 2020.2
public float this[int] ;

描述

分别使用 [0]、[1]、[2]、[3] 访问 x、y、z、w 分量。

using UnityEngine;

public class Example : MonoBehaviour { void Start() { Vector4 p = new Vector4(); p[3] = 5; // the same as p.w = 5 } }