So ill try to clearly explain, I am trying to get a vector that POINTS mid way between where the other two vectors point. I have the 2 vectors I just need the middle one. Say you hold out 3 fingers. I have the two outside fingers but, I want to some how calculate the figure in the middle. I am using Vector3s to achieve this but I don't understand how mathematically to get that middle finger! Sorry for the weird analogy lol but if u still don't understand what am trying to calculate and your good with vectors, ask in the comments. Thanks C:
Normalize your two vectors, add them together, then normalize the result to get the inbetween vector.