Commit bd1026db authored by Rahman's avatar Rahman
Browse files

Update index.html

parent 2e16ef49
Pipeline #9771 passed with stage
in 6 seconds
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,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()">Tap to Place AR Demo</button> <button onclick="activateXR()">Start Hit to Place Demo</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.
...@@ -60,6 +60,8 @@ const viewerSpace = await session.requestReferenceSpace('viewer'); ...@@ -60,6 +60,8 @@ const viewerSpace = await session.requestReferenceSpace('viewer');
const hitTestSource = await session.requestHitTestSource({ space: viewerSpace }); const hitTestSource = await session.requestHitTestSource({ space: viewerSpace });
const loader = new THREE.GLTFLoader(); const loader = new THREE.GLTFLoader();
let reticle; let reticle;
loader.load("https://immersive-web.github.io/webxr-samples/media/gltf/reticle/reticle.gltf", function(gltf) { loader.load("https://immersive-web.github.io/webxr-samples/media/gltf/reticle/reticle.gltf", function(gltf) {
...@@ -68,20 +70,18 @@ loader.load("https://immersive-web.github.io/webxr-samples/media/gltf/reticle/re ...@@ -68,20 +70,18 @@ loader.load("https://immersive-web.github.io/webxr-samples/media/gltf/reticle/re
scene.add(reticle); scene.add(reticle);
}) })
let pineCone; let flower;
// Replace the URL with new url loader.load("https://immersive-web.github.io/webxr-samples/media/gltf/sunflower/sunflower.gltf", function(gltf) {
loader.load("https://transfer.hft-stuttgart.de/gitlab/22raya1mpg/argumented-reality/-/raw/master/public/scene.gltf", function(gltf) { flower = gltf.scene;
pineCone = gltf.scene; });
pineCone.scale.set(0.15, 0.15, 0.15); // Adjust scale as needed
});
session.addEventListener("select", (event) => { session.addEventListener("select", (event) => {
if (pineCone) { if (flower) {
const clone = pineCone.clone(); const clone = flower.clone();
clone.position.copy(reticle.position); clone.position.copy(reticle.position);
scene.add(clone); scene.add(clone);
} }
}); });
// Create a render loop that allows us to draw on the AR view. // Create a render loop that allows us to draw on the AR view.
const onXRFrame = (time, frame) => { const onXRFrame = (time, frame) => {
...@@ -114,12 +114,17 @@ const onXRFrame = (time, frame) => { ...@@ -114,12 +114,17 @@ const onXRFrame = (time, frame) => {
reticle.updateMatrixWorld(true); reticle.updateMatrixWorld(true);
} }
// Render the scene with THREE.WebGLRenderer. // Render the scene with THREE.WebGLRenderer.
renderer.render(scene, camera) renderer.render(scene, camera)
} }
} }
session.requestAnimationFrame(onXRFrame); session.requestAnimationFrame(onXRFrame);
} }
</script> </script>
</body> </body>
......
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