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 Start() { print(new Vector2(1, 2) + new Vector2(2, 3)); } }