File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
jme3-vr/src/main/java/com/jme3/input/vr/lwjgl_openvr Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ public class LWJGLOpenVR implements VRAPI {
4848
4949 private Vector3f hmdPoseLeftEyeVec , hmdPoseRightEyeVec , hmdSeatToStand ;
5050
51- private LWJGLOpenVRInput VRinput ;
51+ private LWJGLOpenVRInput vrInput ;
5252
5353 private VREnvironment environment = null ;
5454
@@ -91,7 +91,7 @@ public LWJGLOpenVR(VREnvironment environment){
9191
9292 @ Override
9393 public LWJGLOpenVRInput getVRinput () {
94- return VRinput ;
94+ return vrInput ;
9595 }
9696
9797 @ Override
@@ -158,9 +158,9 @@ public boolean initialize() {
158158 hmdDisplayFrequency .get (0 );
159159 TrackedDevicePose .create (VR .k_unMaxTrackedDeviceCount );
160160 // init controllers for the first time
161- VRinput = new LWJGLOpenVRInput (environment );
162- VRinput .init ();
163- VRinput .updateConnectedControllers ();
161+ vrInput = new LWJGLOpenVRInput (environment );
162+ vrInput .init ();
163+ vrInput .updateConnectedControllers ();
164164
165165 // init bounds & chaperone info
166166 LWJGLOpenVRBounds bounds = new LWJGLOpenVRBounds ();
@@ -431,4 +431,4 @@ public void setTrackingSpace(boolean isSeated){
431431 public Matrix4f [] getPoseMatrices () {
432432 return poseMatrices ;
433433 }
434- }
434+ }
You can’t perform that action at this time.
0 commit comments