From 7b0dc15f103b2b092193c81ca7fd5bf629bf09c2 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Wed, 28 May 2025 07:08:07 +0200 Subject: [PATCH] auto-git: [change] node/server/public/app.js --- node/server/public/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node/server/public/app.js b/node/server/public/app.js index 2f28258..86f15d3 100644 --- a/node/server/public/app.js +++ b/node/server/public/app.js @@ -294,7 +294,7 @@ class SpinnerController { let offset = (typeof timeSinceSpawnMs === 'number' && timeSinceSpawnMs > 0) ? timeSinceSpawnMs / 1000 : 0; let lifeTime = (spiritIntervalMs ? spiritIntervalMs : 20000) / 1000; const moveSpeed = 0.8; - let spawnPos = { x: 0, y: startY - (moveSpeed * offset) + 1, z: 0.88 }; + let spawnPos = { x: 0, y: startY - (moveSpeed * offset) + 0.8, z: 0.88 }; const modelUrl = spiritData['Model URL'] || spiritData.modelUrl; const { scene: gltfScene } = await gltfLoader.loadAsync(modelUrl);