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

描述

将两个向量相加。

将相应的分量相加。

using UnityEngine;
using System.Collections;

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