Fix for mirror cam not being initialized

fix-456
Rickard Edén 8 years ago
parent 7818f985be
commit 39fad9cb3a
  1. 5
      jme3-vr/src/main/java/com/jme3/app/VREnvironment.java

@ -73,7 +73,7 @@ public class VREnvironment {
guiManager = new VRGuiManager(this);
mouseManager = new VRMouseManager(this);
dummyCam = new Camera(settings.getWidth(), settings.getHeight());
// dummyCam = new Camera(settings.getWidth(), settings.getHeight());
processSettings();
}
@ -332,7 +332,7 @@ public class VREnvironment {
*/
public Camera getCamera() {
if( isInVR() && getVRViewManager() != null && getVRViewManager().getLeftCamera() != null ) {
return dummyCam;
return getDummyCamera();
}
return application.getCamera();
@ -353,7 +353,6 @@ public class VREnvironment {
throw new IllegalStateException("VR environment is not attached to any application.");
}
}
return dummyCam;
}

Loading…
Cancel
Save