Merge pull request #55 from ctrlaltdavid/fix/fix-scaled-walk-speed

Fix scaled avatar walk speed
This commit is contained in:
kasenvr 2020-01-04 13:34:28 -05:00 committed by GitHub
commit d872e9f07d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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