Skip to content

Commit 1fa62f0

Browse files
StarcommanderStarcommander
authored andcommitted
Variables should start with lower-case. (#2013)
New PullRequest as suggested in #2012 Co-authored-by: Starcommander <[email protected]>
1 parent 17fadef commit 1fa62f0

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

jme3-vr/src/main/java/com/jme3/input/vr/lwjgl_openvr/LWJGLOpenVR.java

+6-6
Original file line numberDiff line numberDiff 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+
}

0 commit comments

Comments
 (0)