diff --git a/example/aframe/sandbox/index.html b/example/aframe/sandbox/index.html index 16a544e..6a36c2c 100644 --- a/example/aframe/sandbox/index.html +++ b/example/aframe/sandbox/index.html @@ -52,7 +52,7 @@ $('a-scene').addEventListener('loaded', () => { setupConsole( $('textarea') ) - setupUrlBar( $('input#uri') ) + setupUrlBar( $('input#uri'), window.AFRAME.XRF ) // add screenshot component with camera to capture proper equirects $('a-scene').setAttribute("screenshot",{camera: "[camera]",width: 4096*2, height:2048*2}) diff --git a/example/threejs/sandbox/index.html b/example/threejs/sandbox/index.html index f178fa9..05df6f6 100644 --- a/example/threejs/sandbox/index.html +++ b/example/threejs/sandbox/index.html @@ -85,6 +85,7 @@ let cameraRig = new THREE.Group() cameraRig.position.set( 0, 0, 0 ); + camera.position.set(0,1.6,0) cameraRig.add(camera) scene.add(cameraRig)