Skip to content
Snippets Groups Projects
Commit b7c4eed5 authored by Paolo.Brasolin's avatar Paolo.Brasolin
Browse files

fix: #fe spawn through internal timer (accounting for pauses)

parent 27531be6
No related branches found
No related tags found
No related merge requests found
......@@ -356,12 +356,13 @@ export default class FightScene extends Phaser.Scene {
}
async spawnFoes() {
if (!this.scene.isActive()) return;
await this.spawnFoe();
const delay =
(8 * 1000 * (60 * 1000 - this.time.now)) / 60 / 1000 + 2 * 1000;
// TODO: think of a progression which makes sense
setTimeout(this.spawnFoes.bind(this), Math.max(2000, delay));
const delay = Math.max(
2000,
(8 * 1000 * (60 * 1000 - this.time.now)) / 60 / 1000 + 2 * 1000,
);
this.time.delayedCall(delay, this.spawnFoes.bind(this));
}
async spawnFoe() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment