Jump to content

CameraMetrics and CameraRigs- More info?


jellix
 Share

Recommended Posts

Hi,

I think that I could need custom camera metrics but in the documentation I don't find much about that.

You can assign a CameraRigMode and that could have  rigParameters (that I also can'f find any infos about).

Are there any playground examples or further infos to that topic?

Link to comment
Share on other sites

Hi

Here are the default values: https://github.com/BabylonJS/Babylon.js/blob/9019f5d151943212e9602c1a6ed5b13800ed6ab2/src/Cameras/VR/babylon.vrCameraMetrics.ts#L50

And then if you want to play with values:

var vrCameraMetrices = BABYLON.VRCameraMetrics.GetDefault();

//do the changes you want to here:
vrCameraMetrics.interpupillaryDistance = 0.06;

var cam = new BABYLON.WebVRFreeCamera("myCameraRocks!", BABYLON.Vector3.Zero(), scene, true, vrCameraMetrics)

 

Link to comment
Share on other sites

Solved it by giving the information afterwards:

this.camVR = new BABYLON.VRDeviceOrientationFreeCamera("camVR", new BABYLON.Vector3(0, 150, -200), scene, true);
this.camVR.setCameraRigMode(BABYLON.Camera.RIG_MODE_VR, { vrCameraMetrics: vrCameraMetrics });

Thanks!

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...