Vector4.operator +static operator + (a : Vector4, b : Vector4) : Vector4DescriptionAdds two vectors. Adds corresponding components together.
JavaScript
// prints (5.0,7.0,9.0,11.0) using UnityEngine; import UnityEngine |
