Properly Handling Diagonal Movement Speed
Many types of games involve player-inputs which might point in a diagonal direction.
x += GetHorizontalInputAxis()
y += GetVerticalInputAxis()
This can cause a subtle problem...
Help
Many types of games involve player-inputs which might point in a diagonal direction.
This can cause a subtle problem...