From ef31a2c25883af08382a96a879ef29c041f6bd66 Mon Sep 17 00:00:00 2001 From: Esguerra Montana <32esla1mpg@hft-stuttgart.de> Date: Mon, 17 Jun 2024 15:58:18 +0000 Subject: [PATCH] Update index.html --- public/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/index.html b/public/index.html index 4191022..dc72ff6 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; }); -- GitLab