From 9df414df0499378545e62ac6e4671e850afa5b08 Mon Sep 17 00:00:00 2001 From: Riegel <22rial1mpg@hft-stuttgart.de> Date: Sat, 17 Jun 2023 15:09:34 +0000 Subject: [PATCH] Update public/index.html --- public/index.html | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/public/index.html b/public/index.html index b14f73f..c3759eb 100644 --- a/public/index.html +++ b/public/index.html @@ -21,7 +21,6 @@ async function activateXR() { document.body.appendChild(canvas); const gl = canvas.getContext("webgl", {xrCompatible: true}); - // To be continued in upcoming steps. const scene = new THREE.Scene(); // The cube will have a different color on each side. @@ -35,9 +34,10 @@ 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. const renderer = new THREE.WebGLRenderer({ alpha: true, @@ -93,8 +93,6 @@ const onXRFrame = (time, frame) => { session.requestAnimationFrame(onXRFrame); } - </script> </body> </html> - -- GitLab