diff --git a/public/index.html b/public/index.html index 23fca7f5f10b66e4e614fae4262486b4e85b32f2..b8be792b0d032c54217a8149a56089f927ee5daf 100644 --- a/public/index.html +++ b/public/index.html @@ -64,14 +64,14 @@ const hitTestSource = await session.requestHitTestSource({ space: viewerSpace }) const loader = new THREE.GLTFLoader(); let reticle; -loader.load("https://github.com/immersive-web/webxr-samples/blob/main/media/gltf/headset/headset.gltf", function(gltf) { +loader.load("https://immersive-web.github.io/webxr-samples/media/gltf/reticle/reticle.gltf", function(gltf) { reticle = gltf.scene; reticle.visible = false; scene.add(reticle); }) let flower; -loader.load("https://github.com/immersive-web/webxr-samples/blob/main/media/gltf/headset/headset.gltf", function(gltf) { +loader.load("https://immersive-web.github.io/webxr-samples/media/gltf/sunflower/sunflower.gltf", function(gltf) { flower = gltf.scene; });