Version: 2019.1
public static Vector2 operator + (Vector2 a, Vector2 b);

説明

2 つのベクトルを加算します

各成分同士を加算します。

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void Start() { print(new Vector2(1, 2) + new Vector2(2, 3)); } }