static operator + (a : Vector4, b : Vector4) : Vector4
Description
Adds two vectors.
Adds corresponding components together.
print (Vector4(1,2,3,4) + Vector4(4,5,6,7));
using UnityEngine;
using System.Collections;
public class example :
MonoBehaviour {
void Awake() {
print(
new Vector4(1, 2, 3, 4) +
new Vector4(4, 5, 6, 7));
}
}
import UnityEngine
import System.Collections
class example(
MonoBehaviour):
def
Awake():
print((Vector4(1, 2, 3, 4) + Vector4(4, 5, 6, 7)))