Fix: change runMode as release

Add: apply start, result to typing practice, score text, stage timer

Fix: ranking board text postion
This commit is contained in:
2018-08-24 15:19:26 +09:00
parent efe101babc
commit 48ae12ed11
13 changed files with 430 additions and 104 deletions
+1 -1
View File
@@ -28,7 +28,7 @@ class Chart {
this.drawText(
posX, posY - Chart.CHART_HEIGHT - Chart.CHART_RECORD_OFFSET_Y,
StringUtil.getRecordTextWithUnit(bestRecord)
StringUtil.getRecordTextWithoutUnit(bestRecord) + StringUtil.getScoreUnit(sessionStorageManager.playingAppID),
);
// chart
+6
View File
@@ -86,5 +86,11 @@ class StringUtil {
return alphabetCount;
};
static getScoreUnit(playingAppID) {
if(playingAppID < 100)
return " 타";
else
return " 점";
}
}