Skip to content
Snippets Groups Projects
Commit 43026866 authored by Kevin Lee's avatar Kevin Lee
Browse files

fix issue with teleporting on 3-dof

parent c762b1d5
No related branches found
No related tags found
No related merge requests found
......@@ -186,8 +186,10 @@ export default class ActionEventHandler {
}
onPrimaryDown(e) {
this.onDown(e, "primary_hand_grab");
this.gotPrimaryDown = true;
if (!this.gotPrimaryDown) {
this.onDown(e, "primary_hand_grab");
this.gotPrimaryDown = true;
}
}
onPrimaryUp(e) {
......
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