Reduce vertical despawn speed of spirits

This commit is contained in:
2025-05-28 04:40:25 +02:00
parent b6f82b637f
commit 66562a067e

View File

@@ -335,7 +335,7 @@ class Spirit {
}
}
// Vertikales Despawn-Movement
this.grp.position.y -= 1 * dt;
this.grp.position.y -= 0.2 * dt;
// Nach Lebenszeit entfernen
if (t > this.lifeTime) {
this.dispose();