From 0b398f14a8073126ba8980c23f4afe0f6f19fca6 Mon Sep 17 00:00:00 2001 From: Percen <21pesi1bif@hft-stuttgart.de> Date: Sat, 14 Dec 2024 15:03:08 +0000 Subject: [PATCH] Update public/index.html --- public/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/index.html b/public/index.html index f32aeab..1c61584 100644 --- a/public/index.html +++ b/public/index.html @@ -108,13 +108,13 @@ // Models const loader = new GLTFLoader(); - loader.load('https://example.com/sunflower.gltf', (gltf) => { + loader.load('https://immersive-web.github.io/webxr-samples/media/gltf/sunflower/sunflower.gltf', (gltf) => { sunflowerModel = gltf.scene; sunflowerModel.scale.set(0.5, 0.5, 0.5); sunflowerModel.position.set(0, 0, -2); scene.add(sunflowerModel); }); - loader.load('https://example.com/robot.gltf', (gltf) => { + loader.load('https://threejs.org/examples/models/gltf/RobotExpressive/RobotExpressive.glb', (gltf) => { robotModel = gltf.scene; robotModel.scale.set(0.5, 0.5, 0.5); robotModel.position.set(0, 0, -2); -- GitLab