Good Afternoon, I am trying to add 2 vector3 arrays together and am getting the following error?
using UnityEngine;
using UnityEditor;
using System.Collections;
public class Testing : MonoBehaviour {
private Vector3[] testing1;
private Vector3[] testing2;
private Vector3[] total;
void Start(){
total = testing1 + testing2;
}
}
error CS0019: Operator +' cannot be applied to operands of type
UnityEngine.Vector3’ and `UnityEngine.Vector3’