Hello there. I recently picked up unreal and I came across something I do not quite understand. Coming from Unity, I wanted to make a forward raycast for handling interaction. The ray would need to be cast x meters forward, and rotate with the camera.
I followed the unreal tutorial on linetrace, but I noticed that while working, it would not rotate only on the left/right axis:
A user on discord suggested converting this into a float, which did end up working and not it follows the rotation in any direction. Could please someone go into detail as to why this is so? Chat gpt did not quite manage to provide a good answer.
It also works if you multiply the three values by the same number.
“Get forwar vector” generates the direction of the vector, multiplication adds magnitude
An example in 2d for example the dirrection is X= 0.5, Y= 0.5 you multiply the 2 results so X= 125 and Y= 125
But what you have done is just multiply one of them so the resulting position is X= 0.5 Y= 125.