Applying perspective camera settings to zapper camera

Hello,
How can I apply my perspective camera settings to the zapper camera?
var camera = new THREE.PerspectiveCamera( 90, window.innerWidth / window.innerHeight, 0.1, 1000 );

The object renders fine in threejs camera but after I port in the Zapper camera for AR the objects seem to be too close to the camera, anyway I can port the following settings with the Zapper camera?
let camera = new ZapparThree.Camera(
{ // These values are defaults.

    zNear: 0.1,
    zFar: 1000
}

);
using this has not fixed the object rendering to close to the camera.

Hi,

It looks like the far/near clip distances match, is it possible to move your object further way from the camera in the Z - direction?

If you could share a minimal example (or perhaps just some screenshots) it would be super helpful :slight_smile:

Thanks!