diff --git a/dev/lib/game/main.js b/dev/lib/game/main.js index 2ae9d96..23b414a 100755 --- a/dev/lib/game/main.js +++ b/dev/lib/game/main.js @@ -15,7 +15,7 @@ .defines(function(){ RunningGame = ig.Game.extend({ font: new ig.Font( 'media/04b03.font.png' ), - pauseDialog: new ig.Image('media/pause_dialog.png'), + pauseDialog: new ig.Image('media/pause_screen.png'), showPause: false, clearColor: null, @@ -80,7 +80,7 @@ this.font.draw(ig.global.score.human, 350, 25, ig.Font.ALIGN.CENTER); if (this.showPause) { - this.pauseDialog.draw(150, 100); + this.pauseDialog.draw(0, 0); } } }); diff --git a/dev/media/pause_screen.png b/dev/media/pause_screen.png new file mode 100644 index 0000000..0c029d9 Binary files /dev/null and b/dev/media/pause_screen.png differ diff --git a/doc/TODO b/doc/TODO index 5572f9d..a7e5e37 100644 --- a/doc/TODO +++ b/doc/TODO @@ -1,11 +1,9 @@ Initial release ## GFX -* Title Screen * Game over screen (change main background) * Highscore-Screen * Font for score (search fo a tool and make it fancy) -* Pause Screen ## Sound * Background-tune! (http://www.nosoapradio.us/) @@ -18,8 +16,8 @@ Initial release * email: mail@aaron-mueller.de * passwort: iYon4OIgSy9 * Put the Player (with name) on the highscore +* Only one number for the score ## Nice to have * Improve the AI intelligence (more randomness) * "pulse" paddle on hit -