Increase vertical despawn speed in Spirit class

This commit is contained in:
2025-05-28 05:41:21 +02:00
parent 0c1bcaac46
commit 6b3cb61ef4

View File

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