diff --git a/public/index.html b/public/index.html index ac1bb6f4477e26a1fceb66ec06703677cce583f3..c9037b5b2852e5d6b019a5ae3b89138e6481d32d 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/gitlab/jonsmann/argenericproject/-/blob/master/3dfiles/wooden_rough_planks_4k.gltf", function(gltf) { +loader.load("https://transfer.hft-stuttgart.de/gitlab/jonsmann/argenericproject/-/raw/master/3dfiles/wooden_rough_planks_4k.gltf", function(gltf) { reticle = gltf.scene; reticle.visible = false; scene.add(reticle); }) let flower; -loader.load("https://transfer.hft-stuttgart.de/gitlab/jonsmann/argenericproject/-/blob/master/3dfiles/wooden_rough_planks_4k.gltf", function(gltf) { +loader.load("https://transfer.hft-stuttgart.de/gitlab/jonsmann/argenericproject/-/raw/master/3dfiles/wooden_rough_planks_4k.gltf", function(gltf) { flower = gltf.scene; });