#LocalMove
Careful packing, steady transport, and organized scheduling turn moving day into a controlled and efficient experience from start to finish.
#MovingExperts #LocalMove #RelocationSupport
February 20, 2026 at 8:36 PM
I make a quaternion that maps x/y/z to my desired right/up/forward:

var moveFrame = Quaternion.LookRotation( Vector3.up, -cam.forward ) * Quaternion.Euler(90, 0, 0)

(Can do this slightly faster with a custom extension method)

Then worldMove = moveFrame * localMove;
November 2, 2024 at 2:27 PM