diff --git a/public/index.html b/public/index.html index 4191022738844a8276ae3a10269c4bc6c2dd59aa..dc72ff623c3c3e9a93293c2336f32734650befcc 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://transfer.hft-stuttgart.de/pages/32esla1mpg/webarTTP/reticle/reticle.gltf", function(gltf) { +loader.load("./reticle/reticle.gltf", function(gltf) { reticle = gltf.scene; reticle.visible = false; scene.add(reticle); }) let flower; -loader.load("https://transfer.hft-stuttgart.de/pages/32esla1mpg/webarTTP/sunflower/sunflower.gltf", function(gltf) { +loader.load("./sunflower/sunflower.gltf", function(gltf) { flower = gltf.scene; });