From a7d3b17503735df417482fad8ef4270ba489f297 Mon Sep 17 00:00:00 2001 From: Andrew Kesterson Date: Wed, 11 Jun 2014 20:48:50 -0700 Subject: [PATCH] Made the shadow layer darker --- moonlight/js/moonlight-skulk.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/moonlight/js/moonlight-skulk.js b/moonlight/js/moonlight-skulk.js index edd39fe..f95c5d5 100644 --- a/moonlight/js/moonlight-skulk.js +++ b/moonlight/js/moonlight-skulk.js @@ -272,7 +272,7 @@ GameState.prototype.create = function() } this.shadowTexture = game.add.bitmapData(game.world.width, game.world.height); - this.shadowTextureColor = 'rgb(50, 50, 50)'; + this.shadowTextureColor = 'rgb(25, 25, 25)'; // Create an object that will use the bitmap as a texture this.shadowSprite = game.add.image(0, 0, this.shadowTexture);