From bd12f327b9c0b5b1deabddca4f4b57f13c2d1db8 Mon Sep 17 00:00:00 2001 From: Arif Date: Sat, 24 Jun 2023 19:08:33 +0000 Subject: [PATCH] Update 1-Cube.html --- public/1-Cube.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/1-Cube.html b/public/1-Cube.html index 341368d..5e7a7b2 100644 --- a/public/1-Cube.html +++ b/public/1-Cube.html @@ -36,7 +36,7 @@ const materials = [ // Create the cube and add it to the demo scene. const cube = new THREE.Mesh(new THREE.BoxBufferGeometry(0.3, 0.3, 0.3), materials); -cube.position.set(0, 0, -1); +cube.position.set(0, 0, -3); scene.add(cube); // Set up the WebGLRenderer, which handles rendering to the session's base layer. -- GitLab