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

描述

将两个向量相加。

将相应的分量相加。

using UnityEngine;
using System.Collections;

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