Versions with this page:
Versions without this page:
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() { p[1] = 5; } }