Version: 2021.2
言語: 日本語
public float this[int] ;

説明

イデックスによって 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 } }