Further reduce vertical despawn speed of spirits

This commit is contained in:
2025-05-28 04:40:27 +02:00
parent 66562a067e
commit 081f0fd720

View File

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