mirror of
https://github.com/overte-org/overte.git
synced 2025-04-06 14:12:38 +02:00
Merge pull request #55 from ctrlaltdavid/fix/fix-scaled-walk-speed
Fix scaled avatar walk speed
This commit is contained in:
commit
d872e9f07d
1 changed files with 1 additions and 1 deletions
|
@ -3825,7 +3825,7 @@ void MyAvatar::updateActionMotor(float deltaTime) {
|
|||
}
|
||||
_actionMotorVelocity = motorSpeed * direction;
|
||||
} else {
|
||||
_actionMotorVelocity = direction;
|
||||
_actionMotorVelocity = sensorToWorldScale * direction;
|
||||
}
|
||||
|
||||
float previousBoomLength = _boomLength;
|
||||
|
|
Loading…
Reference in a new issue