Fix: move medal position in result

This commit is contained in:
2019-06-09 00:46:24 +09:00
parent ff2ad76bd5
commit f84a917b62
+3 -3
View File
@@ -246,15 +246,15 @@ RankingBoard.loadResources = function() {
RankingBoard.prototype.makeMedalSprites = function() { RankingBoard.prototype.makeMedalSprites = function() {
var rankAreaPositionY = 630; var rankAreaPositionY = 630;
this.medalHour = game.add.image(425, rankAreaPositionY, 'medal_gold'); this.medalHour = game.add.image(380, rankAreaPositionY, 'medal_gold');
this.medalHour.anchor.set(0.5); this.medalHour.anchor.set(0.5);
this.medalHour.alpha = 0; this.medalHour.alpha = 0;
this.medalDay = game.add.image(655, rankAreaPositionY, 'medal_gold'); this.medalDay = game.add.image(625, rankAreaPositionY, 'medal_gold');
this.medalDay.anchor.set(0.5); this.medalDay.anchor.set(0.5);
this.medalDay.alpha = 0; this.medalDay.alpha = 0;
this.medalMonth = game.add.image(885, rankAreaPositionY, 'medal_gold'); this.medalMonth = game.add.image(860, rankAreaPositionY, 'medal_gold');
this.medalMonth.anchor.set(0.5); this.medalMonth.anchor.set(0.5);
this.medalMonth.alpha = 0; this.medalMonth.alpha = 0;
} }