Version: 2017.2
public static Vector4 operator + (Vector4 a, Vector4 b);

説明

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

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

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void Example() { print(new Vector4(1, 2, 3, 4) + new Vector4(4, 5, 6, 7)); } }