From 5ea38436512af46265e6aedcd38a56c1fd691498 Mon Sep 17 00:00:00 2001 From: Thapa Date: Mon, 19 Jun 2023 12:02:44 +0000 Subject: [PATCH] Update index.html --- public/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/index.html b/public/index.html index bc2a1b8..06f5fd1 100644 --- a/public/index.html +++ b/public/index.html @@ -34,8 +34,8 @@ const materials = [ ]; // Create the cube and add it to the demo scene. -const cube = new THREE.Mesh(new THREE.SphereGeometry(0.5, 0.5, 0.5), materials); -cube.position.set(0, 0, -1); +const cube = new THREE.Mesh(new THREE.SphereGeometry(0.2, 0.2, 0.2), materials); +cube.position.set(1, 1, 1); scene.add(cube); // Set up the WebGLRenderer, which handles rendering to the session's base layer. -- GitLab