File tree 1 file changed +6
-6
lines changed
jme3-vr/src/main/java/com/jme3/input/vr/lwjgl_openvr
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 {
48
48
49
49
private Vector3f hmdPoseLeftEyeVec , hmdPoseRightEyeVec , hmdSeatToStand ;
50
50
51
- private LWJGLOpenVRInput VRinput ;
51
+ private LWJGLOpenVRInput vrInput ;
52
52
53
53
private VREnvironment environment = null ;
54
54
@@ -91,7 +91,7 @@ public LWJGLOpenVR(VREnvironment environment){
91
91
92
92
@ Override
93
93
public LWJGLOpenVRInput getVRinput () {
94
- return VRinput ;
94
+ return vrInput ;
95
95
}
96
96
97
97
@ Override
@@ -158,9 +158,9 @@ public boolean initialize() {
158
158
hmdDisplayFrequency .get (0 );
159
159
TrackedDevicePose .create (VR .k_unMaxTrackedDeviceCount );
160
160
// 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 ();
164
164
165
165
// init bounds & chaperone info
166
166
LWJGLOpenVRBounds bounds = new LWJGLOpenVRBounds ();
@@ -431,4 +431,4 @@ public void setTrackingSpace(boolean isSeated){
431
431
public Matrix4f [] getPoseMatrices () {
432
432
return poseMatrices ;
433
433
}
434
- }
434
+ }
You can’t perform that action at this time.
0 commit comments