From 4a2df5698edfda465acb721ecee7b88477437de4 Mon Sep 17 00:00:00 2001 From: MegaBrutal Date: Mon, 24 Apr 2017 03:29:13 +0200 Subject: [PATCH 1/1] Changed player starting position modified: ld38.js --- ld38.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ld38.js b/ld38.js index 3b58c48..c5c6755 100644 --- a/ld38.js +++ b/ld38.js @@ -93,7 +93,7 @@ gems.add(new Gem((Math.random() * (game.world.width - (WALL_THICKNESS * 4))) + (WALL_THICKNESS * 2), (Math.random() * (game.world.height - (WALL_THICKNESS * 4))) + (WALL_THICKNESS * 2))); gems.children.forEach(function(gem) { gem.enablePhysics(); }); - player = new Player(64, game.world.height - 200, 'player'); + player = new Player(128, game.world.height - 128, 'player'); player.enablePhysics(); game.add.existing(player); game.camera.follow(player); -- 2.34.1