Fix: hide new record particel effect in result if experience player logged in

This commit is contained in:
2018-09-12 09:19:11 +09:00
parent f38e779317
commit 860a6500a1
3 changed files with 10 additions and 12 deletions
+8 -8
View File
@@ -161,14 +161,14 @@ Animal.ANIMATION_TYPE_DAMAGE = 1;
Animal.SPECIES_DATA = [ Animal.SPECIES_DATA = [
{ "species" : "snail", "runningFPS" : 1.1, "practiceTypingCount" : 0, "testTypingCount" : 0 }, { "species" : "snail", "runningFPS" : 1.1, "practiceTypingCount" : 0, "testTypingCount" : 0 },
{ "species" : "turtle", "runningFPS" : 2.2, "practiceTypingCount" : 5, "testTypingCount" : 20 }, { "species" : "turtle", "runningFPS" : 2.2, "practiceTypingCount" : 5, "testTypingCount" : 20 },
{ "species" : "cat", "runningFPS" : 4.4, "practiceTypingCount" : 10, "testTypingCount" : 50 }, { "species" : "cat", "runningFPS" : 3.3, "practiceTypingCount" : 10, "testTypingCount" : 50 },
{ "species" : "lion", "runningFPS" : 6.9, "practiceTypingCount" : 15, "testTypingCount" : 100 }, { "species" : "lion", "runningFPS" : 4.4, "practiceTypingCount" : 15, "testTypingCount" : 100 },
{ "species" : "rabbit", "runningFPS" : 9.3, "practiceTypingCount" : 20, "testTypingCount" : 200 }, { "species" : "rabbit", "runningFPS" : 5.5, "practiceTypingCount" : 20, "testTypingCount" : 200 },
{ "species" : "ostrich", "runningFPS" : 12.8, "practiceTypingCount" : 30, "testTypingCount" : 300 }, { "species" : "ostrich", "runningFPS" : 7.7, "practiceTypingCount" : 25, "testTypingCount" : 300 },
{ "species" : "horse", "runningFPS" : 16.2, "practiceTypingCount" : 40, "testTypingCount" : 400 }, { "species" : "horse", "runningFPS" : 9.9, "practiceTypingCount" : 30, "testTypingCount" : 400 },
{ "species" : "dog", "runningFPS" : 20.1, "practiceTypingCount" : 50, "testTypingCount" : 500 }, { "species" : "dog", "runningFPS" : 12.2, "practiceTypingCount" : 35, "testTypingCount" : 500 },
{ "species" : "cheetah", "runningFPS" : 25.4, "practiceTypingCount" : 60, "testTypingCount" : 600 }, { "species" : "cheetah", "runningFPS" : 16, "practiceTypingCount" : 40, "testTypingCount" : 600 },
{ "species" : "eagle", "runningFPS" : 30.5, "practiceTypingCount" : 80, "testTypingCount" : 700 } { "species" : "eagle", "runningFPS" : 20, "practiceTypingCount" : 50, "testTypingCount" : 700 }
]; ];
Animal.SPRITE_NAMES = { Animal.SPRITE_NAMES = {
+1 -1
View File
@@ -35,7 +35,6 @@ class Result {
// contents // contents
this.printRecord(); this.printRecord();
this.printTodayBestRecord();
this.uploadRecord(); this.uploadRecord();
this.makeRestartButton(); this.makeRestartButton();
@@ -46,6 +45,7 @@ class Result {
this.announceBox.drawBox("체험 계정에서는 기록이 저장되지 않습니다."); this.announceBox.drawBox("체험 계정에서는 기록이 저장되지 않습니다.");
} else { } else {
let recordBoard = new RecordBoard(RecordBoard.TYPE_DB); let recordBoard = new RecordBoard(RecordBoard.TYPE_DB);
this.printTodayBestRecord();
} }
@@ -5,7 +5,5 @@ var englishBasicWordList = [
"f", "f",
"j", "j",
"k", "k",
"l", "l"
";",
"'"
]; ];