Fix: move medal position in result
This commit is contained in:
@@ -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;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user