diff --git a/public/index.html b/public/index.html index d252b529f62c8a70efdf69865878b09342a64f17..dbb3476facad259243bf012ba44fb64a4851aa19 100644 --- a/public/index.html +++ b/public/index.html @@ -51,6 +51,9 @@ async function activateXR() { // Create the torus mesh const torusMesh = new THREE.Mesh(torusGeometry, goldMaterial); + // Scale the torus mesh to make it smaller + torusMesh.scale.set(0.5, 0.5, 0.5); + // Add the torus mesh to the scene scene.add(torusMesh);