Skip to content

Commit

Permalink
missed one event name.
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelthatsit committed Feb 19, 2024
1 parent 945bc77 commit 99ac1fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/componentSystems/ControlSystem.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export class ControlSystem extends MRSystem {
this.app.renderer.domElement.addEventListener('touchstart', this.onMouseDown);
this.app.renderer.domElement.addEventListener('touchend', this.onMouseUp);
this.app.renderer.domElement.addEventListener('touchmove', this.mouseOver);
this.app.renderer.domElement.addEventListener('touchmove', this.mouseOver);
this.app.renderer.domElement.addEventListener('touch', this.mouseOver);
}

/**
Expand Down

0 comments on commit 99ac1fc

Please sign in to comment.