Versions with this page:
Versions without this page:
Suma dos vectores.
Agrega los componentes correspondientes juntos.
using UnityEngine; using System.Collections;public class ExampleClass : MonoBehaviour { void Example() { print(new Vector4(1, 2, 3, 4) + new Vector4(4, 5, 6, 7)); } }