Commit 8a62fc35 authored by Karakas's avatar Karakas
Browse files

Changed cube size from 0.5 to 0.2

parent ff144bff
No related merge requests found
Pipeline #8923 passed with stage
in 4 seconds
Showing with 1 addition and 1 deletion
+1 -1
......@@ -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);
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment