We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a4e0bd commit 484b05eCopy full SHA for 484b05e
src/utils/mouse-events-handler.js
@@ -124,7 +124,9 @@ export default class MouseEventsHandler {
124
}
125
126
onMouseMove(e) {
127
- const shouldLook = this.isPointerLocked || (this.isLeftButtonDown && !this.isLeftButtonHandledByCursor);
+ const shouldLook =
128
+ this.isPointerLocked ||
129
+ (!this.superHand.state.get("grab-start") && this.isLeftButtonDown && !this.isLeftButtonHandledByCursor);
130
if (shouldLook) {
131
this.look(e);
132
0 commit comments