mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
Revert "Increasing speed on mousescroll - zooming in/out of avatar"
This reverts commit 748507f1e3
.
This commit is contained in:
parent
6ddb91e593
commit
c5b8a2d06e
1 changed files with 1 additions and 1 deletions
|
@ -2229,7 +2229,7 @@ void MyAvatar::updateActionMotor(float deltaTime) {
|
|||
}
|
||||
|
||||
float boomChange = getDriveKey(ZOOM);
|
||||
_boomLength += 4.0f * _boomLength * boomChange + boomChange * boomChange;
|
||||
_boomLength += 2.0f * _boomLength * boomChange + boomChange * boomChange;
|
||||
_boomLength = glm::clamp<float>(_boomLength, ZOOM_MIN, ZOOM_MAX);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue