Commit 4c212336 authored by Tsymbal's avatar Tsymbal
Browse files

Update public/cube.html

parent 3190cc3e
Pipeline #7774 passed with stage
......@@ -34,8 +34,8 @@ const materials = [
];
// Create the cube and add it to the demo scene.
const cube = new THREE.Mesh(new THREE.BoxBufferGeometry(0.2, 0.2, 0.2), materials);
cube.position.set(1, 1, 1);
const cube = new THREE.Mesh(new THREE.BoxBufferGeometry(0.5, 0.5, 0.5), materials);
cube.position.set(0, 0, -1);
scene.add(cube);
// Set up the WebGLRenderer, which handles rendering to the session's base layer.
......@@ -91,6 +91,7 @@ const onXRFrame = (time, frame) => {
}
}
session.requestAnimationFrame(onXRFrame);
}
</script>
</body>
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment