mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 10:29:01 +02:00
Fix scaled avatar walk speed
This commit is contained in:
parent
1d14bed3ce
commit
7364ac5521
1 changed files with 1 additions and 1 deletions
|
@ -3825,7 +3825,7 @@ void MyAvatar::updateActionMotor(float deltaTime) {
|
||||||
}
|
}
|
||||||
_actionMotorVelocity = motorSpeed * direction;
|
_actionMotorVelocity = motorSpeed * direction;
|
||||||
} else {
|
} else {
|
||||||
_actionMotorVelocity = direction;
|
_actionMotorVelocity = sensorToWorldScale * direction;
|
||||||
}
|
}
|
||||||
|
|
||||||
float previousBoomLength = _boomLength;
|
float previousBoomLength = _boomLength;
|
||||||
|
|
Loading…
Reference in a new issue