Vector3.operator +
static function operator +(a: Vector3, b: Vector3): Vector3;
static Vector3 operator +(Vector3 a, Vector3 b);
static def operator +(a as Vector3, b as Vector3) as Vector3
Description

Adds two vectors.

Adds corresponding components together.
	// prints (5.0,7.0,9.0)
	print (Vector3(1,2,3) + Vector3(4,5,6));
using UnityEngine;
using System.Collections;

public class Example : MonoBehaviour {
    void Example() {
        print(new Vector3(1, 2, 3) + new Vector3(4, 5, 6));
    }
}
import UnityEngine
import System.Collections

public class Example(MonoBehaviour):

	def Example() as void:
		print((Vector3(1, 2, 3) + Vector3(4, 5, 6)))