Hi guys! So during this lesson we needed to extend our vector by multiplying it by our float (Reach = 100.f)
I was curious as to how this works as an FVector stores 3 floats (x, y, z). Which value(s) get’s modified by our Reach?
The first screenshot shows some code I wrote to print the values of our line trace with and without the Reach multiplier.
In the second screenshot we get to see the output, and it’s clear that only the Y value is modified.
Can anyone explain why the Y value is the default target to be multiplied and not X or Z?
Thanks!