From 838299a1fa006d506dc98866293a84044c26695c Mon Sep 17 00:00:00 2001 From: Thapa <luxthapa6363@gmail.com> Date: Tue, 20 Jun 2023 15:33:03 +0000 Subject: [PATCH] Update 1-Cube.html --- public/1-Cube.html | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/public/1-Cube.html b/public/1-Cube.html index ccfff6f..0802633 100644 --- a/public/1-Cube.html +++ b/public/1-Cube.html @@ -25,11 +25,16 @@ async function activateXR() { // The cube will have a different color on each side. const materials = [ - new THREE.MeshBasicMaterial({color: 0x000000}) + new THREE.MeshBasicMaterial({color: 0x000000}), + new THREE.MeshBasicMaterial({color: 0x444444}), + new THREE.MeshBasicMaterial({color: 0x5b5b5b}), + new THREE.MeshBasicMaterial({color: 0x999999}), + new THREE.MeshBasicMaterial({color: 0xbcbcbc}), + new THREE.MeshBasicMaterial({color: 0xeeeeee}) ]; // Create the cube and add it to the demo scene. -const cube = new THREE.Mesh(new THREE.ConeGeometry(0.5, 1, 5), materials); +const cube = new THREE.Mesh(new THREE.BoxBufferGeometry(0.5, 0.5, 0.5), materials); cube.position.set(0, 0, -1); scene.add(cube); -- GitLab