이 페이지가 있는 버전:
이 페이지가 없는 버전:
Adds two vectors.
Adds corresponding components together.
// prints (5.0,7.0,9.0)using UnityEngine; using System.Collections;public class ExampleClass : MonoBehaviour { void Start() { print(new Vector3(1, 2, 3) + new Vector3(4, 5, 6)); } }