Fix: center message text color
This commit is contained in:
@@ -94,6 +94,7 @@ var WordFlyingSaucer = {
|
||||
|
||||
|
||||
// this.startGame();
|
||||
this.showLevelUpText();
|
||||
},
|
||||
|
||||
|
||||
@@ -152,7 +153,13 @@ var WordFlyingSaucer = {
|
||||
}
|
||||
|
||||
var GROUND_OFFSET_Y = 600;
|
||||
this.tileSprite = game.add.tileSprite(-50, GROUND_OFFSET_Y, GAME_SCREEN_SIZE.x + 50, GROUND_OFFSET_Y + 150, "tile_choco");
|
||||
// this.tileSprite = game.add.tileSprite(50, GROUND_OFFSET_Y, GAME_SCREEN_SIZE.x + 50, GROUND_OFFSET_Y + 150, "tile_choco");
|
||||
// this.tileSprite = game.add.tileSprite(300, 300, 100, 100, "tile_choco");
|
||||
this.tileSprite = game.add.tileSprite(
|
||||
GAME_SCREEN_SIZE.x, GAME_SCREEN_SIZE.y,
|
||||
GAME_SCREEN_SIZE.x, 200,
|
||||
"tile_choco");
|
||||
this.tileSprite.anchor.set(0.5);
|
||||
this.tileSprite.tileScale.set(2);
|
||||
},
|
||||
|
||||
@@ -221,7 +228,7 @@ var WordFlyingSaucer = {
|
||||
if(this.centerMessageText)
|
||||
// this.centerMessageText.text = "";
|
||||
this.centerMessageText.destroy();
|
||||
this.centerMessageText = new CenterMessageText("단어 난이도 상승!");
|
||||
this.centerMessageText = new CenterMessageText("[ " + this.gameLevelManager.getWordLevelText() + " ] 단계 활성화");
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user