Versions with this page:
Versions without this page:
Adds two vectors.
Adds corresponding components together.
using UnityEngine; using System.Collections;public class ExampleClass : MonoBehaviour { void Example() { print(new Vector3(1, 2, 3) + new Vector3(4, 5, 6)); } }