mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-04-05 20:36:28 +02:00
Fix gracefulControls drifting rotation up
This commit is contained in:
parent
f0e58fea9a
commit
73d6da9f46
1 changed files with 7 additions and 4 deletions
|
@ -111,8 +111,11 @@ function update(dt) {
|
|||
var x = Reticle.getPosition().x;
|
||||
var y = Reticle.getPosition().y;
|
||||
|
||||
yawFromMouse += ((x - lastX) * movementParameters.MOUSE_YAW_SCALE * movementParameters.MOUSE_SENSITIVITY);
|
||||
pitchFromMouse += ((y - lastY) * movementParameters.MOUSE_PITCH_SCALE * movementParameters.MOUSE_SENSITIVITY);
|
||||
var dx = x - lastX;
|
||||
var dy = y - lastY;
|
||||
|
||||
yawFromMouse += (dx * movementParameters.MOUSE_YAW_SCALE * movementParameters.MOUSE_SENSITIVITY);
|
||||
pitchFromMouse += (dy * movementParameters.MOUSE_PITCH_SCALE * movementParameters.MOUSE_SENSITIVITY);
|
||||
pitchFromMouse = Math.max(-180, Math.min(180, pitchFromMouse));
|
||||
|
||||
resetCursorPosition();
|
||||
|
@ -170,8 +173,8 @@ function scriptEnding() {
|
|||
}
|
||||
|
||||
function resetCursorPosition() {
|
||||
var newX = Window.x + Window.innerWidth / 2;
|
||||
var newY = Window.y + Window.innerHeight / 2;
|
||||
var newX = Math.floor(Window.x + Window.innerWidth / 2);
|
||||
var newY = Math.floor(Window.y + Window.innerHeight / 2);
|
||||
Reticle.setPosition({ x: newX, y: newY});
|
||||
lastX = newX;
|
||||
lastY = newY;
|
||||
|
|
Loading…
Reference in a new issue