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

feat: #fe don't wait for entrance

parent 3018a15c
No related branches found
No related tags found
No related merge requests found
...@@ -151,7 +151,6 @@ export default class FightScene extends Phaser.Scene { ...@@ -151,7 +151,6 @@ export default class FightScene extends Phaser.Scene {
duration: 2000, duration: 2000,
onComplete: () => { onComplete: () => {
setAnimation(this.player, "player_idle"); setAnimation(this.player, "player_idle");
gameStart(this);
}, },
}); });
...@@ -160,6 +159,7 @@ export default class FightScene extends Phaser.Scene { ...@@ -160,6 +159,7 @@ export default class FightScene extends Phaser.Scene {
); );
this.scale.refresh(); this.scale.refresh();
initAndBindGuessPreview(this); initAndBindGuessPreview(this);
gameStart(this);
} }
showMissMessage() { showMissMessage() {
...@@ -304,9 +304,7 @@ function submitTranscription(transcription: string, scene: FightScene) { ...@@ -304,9 +304,7 @@ function submitTranscription(transcription: string, scene: FightScene) {
} }
function gameStart(scene: any) { function gameStart(scene: any) {
setTimeout(() => { dispatchEnemy(scene);
dispatchEnemy(scene);
}, 200);
} }
function dispatchEnemy(scene: any) { function dispatchEnemy(scene: any) {
......
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