Commit 2c2d557b authored by Thapa's avatar Thapa
Browse files

Update 1-Cube.html

parent cf26a8be
Pipeline #8087 passed with stage
in 5 seconds
Showing with 1 addition and 6 deletions
+1 -6
...@@ -25,16 +25,11 @@ async function activateXR() { ...@@ -25,16 +25,11 @@ async function activateXR() {
// The cube will have a different color on each side. // The cube will have a different color on each side.
const materials = [ const materials = [
new THREE.MeshBasicMaterial({color: 0x744700}),
new THREE.MeshBasicMaterial({color: 0x000000}),
new THREE.MeshBasicMaterial({color: 0x000000}),
new THREE.MeshBasicMaterial({color: 0x000000}),
new THREE.MeshBasicMaterial({color: 0x000000}),
new THREE.MeshBasicMaterial({color: 0x000000}) new THREE.MeshBasicMaterial({color: 0x000000})
]; ];
// Create the cube and add it to the demo scene. // 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.ConeGeometry(0.5, 1, 5), materials);
cube.position.set(0, 0, -1); cube.position.set(0, 0, -1);
scene.add(cube); 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