Commit 11217c46 authored by Thapa's avatar Thapa
Browse files

Update index.html

parent 4f4a3ffe
No related merge requests found
Pipeline #7872 passed with stage
in 5 seconds
Showing with 6 additions and 6 deletions
+6 -6
......@@ -25,12 +25,12 @@ async function activateXR() {
// The cube will have a different color on each side.
const materials = [
new THREE.MeshNormalMaterial({color: 0xff0000}),
new THREE.MeshNormalMaterial({color: 0x0000ff}),
new THREE.MeshNormalMaterial({color: 0x00ff00}),
new THREE.MeshNormalMaterial({color: 0xff00ff}),
new THREE.MeshNormalMaterial({color: 0x00ffff}),
new THREE.MeshNormalMaterial({color: 0xffff00})
new THREE.MeshBasicMaterial({color: 0xff0000}),
new THREE.MeshBasicMaterial({color: 0x0000ff}),
new THREE.MeshBasicMaterial({color: 0x00ff00}),
new THREE.MeshBasicMaterial({color: 0xff00ff}),
new THREE.MeshBasicMaterial({color: 0x00ffff}),
new THREE.MeshBasicMaterial({color: 0xffff00})
];
// Create the cube and add it to the demo scene.
......
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