Fix: change typing exam failed message (word)
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
@@ -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";
|
||||
}
|
||||
};
|
||||
|
||||
@@ -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);
|
||||
|
||||
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user