Darkening shadow layer

This commit is contained in:
Andrew Kesterson
2014-06-11 10:55:29 -07:00
parent 684af03a03
commit 5b79809f00

View File

@@ -251,7 +251,7 @@ GameState.prototype.updateShadowTexture = function() {
// underneath it darker, while the white area is unaffected. // underneath it darker, while the white area is unaffected.
// Draw shadow // Draw shadow
this.shadowTexture.context.fillStyle = 'rgb(200, 200, 200)'; this.shadowTexture.context.fillStyle = 'rgb(50, 50, 50)';
this.shadowTexture.context.fillRect(game.camera.x - 50, this.shadowTexture.context.fillRect(game.camera.x - 50,
game.camera.y - 50, game.camera.y - 50,
game.width + 50, game.width + 50,