Allow for more precise flexible instance movement

This commit is contained in:
ForestOfLight
2025-09-18 19:33:30 -07:00
Unverified
parent 9539a1d1a1
commit 75509ff11f
@@ -71,8 +71,6 @@ export class FlexibleInstanceMove {
if (playerMovement.isSneaking())
velocity.y -= 1;
if (velocity.length > 0)
velocity = velocity.normalized;
return velocity.multiply(speedFactor);
}