Fix for mirror cam not being initialized

This commit is contained in:
Rickard Edén 2017-04-04 10:00:50 +02:00
parent 7818f985be
commit 39fad9cb3a

@ -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;
}