From 3cf8b70eecf684a78de37a2ac920a617a0f20137 Mon Sep 17 00:00:00 2001 From: neingeist Date: Mon, 25 Nov 2013 00:56:06 +0100 Subject: [PATCH] start player more to the left --- platformer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platformer.js b/platformer.js index 62097c1..7c54f12 100644 --- a/platformer.js +++ b/platformer.js @@ -30,7 +30,7 @@ Q.Sprite.extend("Player",{ // You can call the parent's constructor with this._super(..) this._super(p, { sheet: "astronaut", // Setting a sprite sheet sets sprite width and height - x: 360, // You can also set additional properties that can + x: 320, // You can also set additional properties that can y: 90 // be overridden on object creation });