From 0090deb7fd0712ae2220d966e67aff94d2ff0830 Mon Sep 17 00:00:00 2001 From: Arif <azizularif@gmail.com> Date: Sat, 24 Jun 2023 19:44:35 +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 14c853b..6ff0257 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.5, 0.5, 0.5), materials); -cube.position.set(0, 0, -1); +cube.position.set(0, 0, -5); scene.add(cube); // Set up the WebGLRenderer, which handles rendering to the session's base layer. -- GitLab