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:
@@ -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
|
||||
|
||||
@@ -86,5 +86,11 @@ class StringUtil {
|
||||
return alphabetCount;
|
||||
};
|
||||
|
||||
static getScoreUnit(playingAppID) {
|
||||
if(playingAppID < 100)
|
||||
return " 타";
|
||||
else
|
||||
return " 점";
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user