Fix: change typing exam failed message (word)

This commit is contained in:
2019-09-28 14:54:58 +09:00
parent ac8549e9ad
commit 4881cc1daa
7 changed files with 12 additions and 14 deletions
+2 -3
View File
@@ -26,12 +26,11 @@ Chart.prototype.drawRecordGraph = function(index, date, bestRecord, min, max) {
var absRecordValue = bestRecord < 0 ? -1 * bestRecord : bestRecord;
// var absRecordValue = Math.abs(Math.floor(bestRecord));
var recordWithUnit = RecordUtil.getRecordValueWithUnit(absRecordValue, sessionStorageManager.getPlayingAppID());
if(bestRecord >= 0) {
this.drawText(posX, recordTextPosY, recordWithUnit);
} else {
// recordWithUnit = recordWithUnit + "/실격";
recordWithUnit = "실격/" + recordWithUnit;
recordWithUnit = "아깝/" + recordWithUnit;
this.drawDisqualificationText(posX, recordTextPosY, recordWithUnit);
}
+1 -1
View File
@@ -51,7 +51,7 @@ HistoryText.prototype.setContents = function(date, record) {
if(record >= 0) {
this.textRecord.text = absRecordValue;
} else {
this.textRecord.text = "실격/" + absRecordValue;
this.textRecord.text = "아깝/" + absRecordValue;
this.textRecord.style.fill = "#ffaaaa";
}
};
+2 -2
View File
@@ -103,7 +103,7 @@ RankingText.prototype.setTextRankingColor = function(text, ranking) {
}
text.fill = fillColor;
text.stroke = strokeColor;
text.strokeThickness = 6;
text.strokeThickness = 4;
text.setShadow(2, 2, "#333333", 2, false, true);
};
@@ -157,7 +157,7 @@ RankingText.prototype.setContents = function(playerID, ranking, playerName, reco
if(record >= 0)
this.textRanking.text = ranking + "등";
else
this.textRanking.text = "실격";
this.textRanking.text = "아깝";
this.textPlayerName.text = playerName;
this.setRecord(record, this.appID);
this.setTopRankingTextColor(ranking);
+1 -1
View File
@@ -104,7 +104,7 @@ Result.prototype.printRecord = function() {
scoreText.style.fill = MainColor.THISTLE_STRING;
var timeoverText = this.makeDefaultText(game.world.width / 2, 225);
timeoverText.text = "== 제한 시간 초과 ==";
timeoverText.text = "== 아깝네요, 제한 시간 초과! ==";
timeoverText.fontSize = 50;
timeoverText.setShadow(3, 3, 'rgba(0, 0, 0, 0.5)', 2);
timeoverText.anchor.set(0.5);