Fix scaled avatar walk speed

This commit is contained in:
David Rowe 2020-01-04 11:43:28 +13:00
parent 1d14bed3ce
commit 7364ac5521

View file

@ -3825,7 +3825,7 @@ void MyAvatar::updateActionMotor(float deltaTime) {
}
_actionMotorVelocity = motorSpeed * direction;
} else {
_actionMotorVelocity = direction;
_actionMotorVelocity = sensorToWorldScale * direction;
}
float previousBoomLength = _boomLength;