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() { // set p.y as 5.0f p[1] = 5.0f; } }