Commit 93d7c073 authored by Esguerra Montana's avatar Esguerra Montana
Browse files

Update index.html

parent fafb2ce0
Pipeline #9358 passed with stage
in 6 seconds
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
<!-- Starting an immersive WebXR session requires user interaction. <!-- Starting an immersive WebXR session requires user interaction.
We start this one with a simple button. --> We start this one with a simple button. -->
<button onclick="activateXR()">Start Cube Demo</button> <button onclick="activateXR()">Start Torus</button>
<script> <script>
async function activateXR() { async function activateXR() {
// Add a canvas element and initialize a WebGL context that is compatible with WebXR. // Add a canvas element and initialize a WebGL context that is compatible with WebXR.
...@@ -23,10 +23,10 @@ async function activateXR() { ...@@ -23,10 +23,10 @@ async function activateXR() {
const scene = new THREE.Scene(); const scene = new THREE.Scene();
// The cube will have a different color on each side. // Color of the torus geometry.
const material = new THREE.MeshLambertMaterial({ color: 0xce1256 }); const material = new THREE.MeshLambertMaterial({ color: 0xce1256 });
// Create the cube and add it to the demo scene. // Create the torus and add it to the demo scene.
const torus = new THREE.Mesh( new THREE.TorusKnotGeometry(0.3, 0.2, 80, 8), material); const torus = new THREE.Mesh( new THREE.TorusKnotGeometry(0.3, 0.2, 80, 8), material);
//position the next geometry (sphere) //position the next geometry (sphere)
torus.position.x = -2; torus.position.x = -2;
......
Markdown is supported
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