Skip to content
Snippets Groups Projects
Commit 191686b3 authored by joni's avatar joni
Browse files

Hide cursor while teleporting on gearvr.

parent 8221a914
No related branches found
No related tags found
No related merge requests found
...@@ -42,6 +42,8 @@ export default class GearVRMouseEventsHandler { ...@@ -42,6 +42,8 @@ export default class GearVRMouseEventsHandler {
return; return;
} }
this.cursor.setCursorVisibility(false);
const button = this.gazeTeleporter.data.button; const button = this.gazeTeleporter.data.button;
this.gazeTeleporter.el.emit(button + "down"); this.gazeTeleporter.el.emit(button + "down");
this.isMouseDownHandledByGazeTeleporter = true; this.isMouseDownHandledByGazeTeleporter = true;
...@@ -53,6 +55,8 @@ export default class GearVRMouseEventsHandler { ...@@ -53,6 +55,8 @@ export default class GearVRMouseEventsHandler {
this.isMouseDownHandledByCursor = false; this.isMouseDownHandledByCursor = false;
} }
this.cursor.setCursorVisibility(true);
if (this.isMouseDownHandledByGazeTeleporter) { if (this.isMouseDownHandledByGazeTeleporter) {
const button = this.gazeTeleporter.data.button; const button = this.gazeTeleporter.data.button;
this.gazeTeleporter.el.emit(button + "up"); this.gazeTeleporter.el.emit(button + "up");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment