Skip to content

Commit

Permalink
Reverse the model controllers
Browse files Browse the repository at this point in the history
  • Loading branch information
dthian committed Sep 25, 2020
1 parent be8b919 commit 30d1e2c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions android/app/src/main/cpp/VROInputPresenterOVR.h
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ class VROInputPresenterOVR : public VROInputPresenter {
_rightControllerBaseNode->addChildNode(_rightControllerBaseNodeAttachment);
getRootNode()->addChildNode(_LeftControllerBaseNode);
getRootNode()->addChildNode(_rightControllerBaseNode);
initControllerModel(_LeftControllerBaseNode, driver, kTouchLeftModel);
initControllerModel(_rightControllerBaseNode, driver, kTouchRightModel);
initControllerModel(_LeftControllerBaseNode, driver, kTouchRightModel);
initControllerModel(_rightControllerBaseNode, driver, kTouchLeftModel);
getRootNode()->setIgnoreEventHandling(true);
getRootNode()->setSelectable(false);
}
Expand Down

0 comments on commit 30d1e2c

Please sign in to comment.