2
0
Эх сурвалжийг харах

Ensure transitionExit happens before next enter

Thomas Dy 6 жил өмнө
parent
commit
8dbe14981d
1 өөрчлөгдсөн 12 нэмэгдсэн , 4 устгасан
  1. 12 4
      src/game/common.ts

+ 12 - 4
src/game/common.ts

@@ -19,15 +19,15 @@ namespace game {
     constructor(readonly container: HTMLElement) {
       this.container.addEventListener('transitionend', (event: TransitionEvent) => {
         if (this.pendingExit && event.propertyName === 'opacity') {
-          if (this.lastScreen !== null) {
-            this.lastScreen.transitionExit();
-            this.lastScreen = null;
-          }
+          this.finishExit();
         }
       });
     }
 
     switchScreen(nextScreen: Screen | null): void {
+      if (this.pendingExit) {
+        this.finishExit();
+      }
       if (this.activeScreen != null) {
         this.container.classList.remove(this.activeScreen.name);
         this.pendingExit = true;
@@ -40,6 +40,14 @@ namespace game {
         this.container.classList.add(nextScreen.name);
       }
     }
+
+    finishExit() {
+      this.pendingExit = false;
+      if (this.lastScreen !== null) {
+        this.lastScreen.transitionExit();
+        this.lastScreen = null;
+      }
+    }
   }
 
   interface GameSounds {