Hi,
I am firing enterVR manually (i.e. onClick is disabled)
I have a script attached to the camera thus:
Startvr.prototype.initialize = function() {
var Camera = this.app.root.findByName('Camera');
var vrCamera = Camera.script.vrCamera;
this.app.on("vr:ready", function (hmd) {
vrCamera.enterVr();
});
};
however using this causing the stereo effect to become disjointed and blurred?
probably but I am not sure it will be of much use. it looks stereo on the screen and you only notice the difference when you put the headset on and everything is blurred and out of wack.
do you still want the screenshot?
Startvr.prototype.initialize = function() {
var Camera = this.app.root.findByName('Camera');
var vrCamera = Camera.script.vrCamera;
this.app.on("vr:ready", function (hmd) {
vrCamera.update();
vrCamera.enterVr();
});
};