From 7364ac55218f27890ce3ee4ef61330d0654a0852 Mon Sep 17 00:00:00 2001 From: David Rowe Date: Sat, 4 Jan 2020 11:43:28 +1300 Subject: [PATCH] Fix scaled avatar walk speed --- interface/src/avatar/MyAvatar.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface/src/avatar/MyAvatar.cpp b/interface/src/avatar/MyAvatar.cpp index 2522d0e4c6..76575ab8ef 100644 --- a/interface/src/avatar/MyAvatar.cpp +++ b/interface/src/avatar/MyAvatar.cpp @@ -3825,7 +3825,7 @@ void MyAvatar::updateActionMotor(float deltaTime) { } _actionMotorVelocity = motorSpeed * direction; } else { - _actionMotorVelocity = direction; + _actionMotorVelocity = sensorToWorldScale * direction; } float previousBoomLength = _boomLength;