From 8a62fc35cfd6d6847364ded9febc67a5a94a6932 Mon Sep 17 00:00:00 2001 From: Karakas <22kaen1bdi@hft-stuttgart.de> Date: Thu, 23 Nov 2023 10:06:08 +0000 Subject: [PATCH] Changed cube size from 0.5 to 0.2 --- public/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/index.html b/public/index.html index c3759eb..6bfa973 100644 --- a/public/index.html +++ b/public/index.html @@ -34,7 +34,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); +const cube = new THREE.Mesh(new THREE.BoxBufferGeometry(0.2, 0.2, 0.2), materials); cube.position.set(0, 0, -1); scene.add(cube); -- GitLab