Change wordbubble text color

This commit is contained in:
2014-06-14 11:28:21 -07:00
parent d394430e34
commit f8ced8a4d5
2 changed files with 1 additions and 1 deletions

View File

@@ -797,7 +797,7 @@ GameState.prototype.create = function()
this.shadowTexture = game.add.bitmapData(game.world.width, game.world.height);
// drop this lower to make the map darker
this.shadowTextureColor = 'rgb(255, 255, 255)';
this.shadowTextureColor = 'rgb(40, 40, 40)';
this.shadowSprite = game.add.image(0, 0, this.shadowTexture);
this.shadowSprite.blendMode = Phaser.blendModes.MULTIPLY;