public float this[int] ;

Descripción

Acceda a los componentes x , y , z usando [0], [1], [2] respectivamente.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { public Vector3 p;

void Example() { // set p.y as 5.0f p[1] = 5.0f; } }