Fix: just on time experience app timer text layer

This commit is contained in:
2019-12-04 10:46:09 +09:00
parent 084c866f8c
commit c1fa43593c
+6 -5
View File
@@ -26,11 +26,6 @@ JustOnTime.prototype.create = function() {
sessionStorageManager.setIsNewAppHighestRecord(false);
var experienceAppTimer = new ExperienceAppTimer();
experienceAppTimer.setTimeOverListener(
(function() { this.timeOver(); }).bind(this)
);
// keyboard shortcut
this.keyboardShortcut = new KeyboardShortcut();
this.keyboardShortcut.addCallback(
@@ -109,6 +104,12 @@ JustOnTime.prototype.create = function() {
this.god = new God();
// experience app timer must be shown over god character
var experienceAppTimer = new ExperienceAppTimer();
experienceAppTimer.setTimeOverListener(
(function() { this.timeOver(); }).bind(this)
);
// bottom ui
var screenBottomUI = new ScreenBottomUI();
screenBottomUI.printLeftTextWithAppHighestRecord(sessionStorageManager.getAppHighestRecord());