diff --git a/dev/index.html b/dev/index.html
index 131a5e4..3994e86 100755
--- a/dev/index.html
+++ b/dev/index.html
@@ -7,7 +7,7 @@
-
+
@@ -79,7 +104,7 @@
for this awesome game.
- teamarg.com
+ team-arg.aaron-mueller.de
diff --git a/dev/lib/game/main.js b/dev/lib/game/main.js
index 3f88f1a..766e82a 100755
--- a/dev/lib/game/main.js
+++ b/dev/lib/game/main.js
@@ -49,6 +49,13 @@ ig.module(
// init graphics
this.pauseDialogAnim = new ig.Animation( this.pauseDialog, 0, [0] )
+ // init music
+ ig.music.add('sounds/DST-AngryRobotIII.mp3');
+ ig.music.add('sounds/DST-2ndBallad.mp3');
+ ig.music.loop = true;
+ ig.music.volume = 0.3;
+ ig.music.play();
+
// Load the level
this.loadLevel(LevelLevel1);
},
diff --git a/dev/media/playfield.png b/dev/media/playfield.png
index 9dc4322..5eef53f 100644
Binary files a/dev/media/playfield.png and b/dev/media/playfield.png differ
diff --git a/dev/media/sounds/DST-2ndBallad.mp3 b/dev/media/sounds/DST-2ndBallad.mp3
new file mode 100644
index 0000000..041751e
Binary files /dev/null and b/dev/media/sounds/DST-2ndBallad.mp3 differ
diff --git a/dev/media/sounds/DST-AngryRobotIII.mp3 b/dev/media/sounds/DST-AngryRobotIII.mp3
new file mode 100644
index 0000000..424a9fb
Binary files /dev/null and b/dev/media/sounds/DST-AngryRobotIII.mp3 differ
diff --git a/doc/TODO b/doc/TODO
index ca8ccfc..509847e 100644
--- a/doc/TODO
+++ b/doc/TODO
@@ -3,10 +3,6 @@ Initial release
## GFX
* Highscore-Screen
-## Sound
-* Background-tune! (http://www.nosoapradio.us/)
-* Soundeffects more sutle
-
## Code
* Display the Highscore in the game
* Highscore-Script (http://www.holoville.com/blog/?p=948, http://www.scoreoid.net/)
@@ -17,10 +13,8 @@ Initial release
* Only one number for the score
## Polish
-* Hitbox for paddles is wrong
* Increase points with game length
* Randomness for Y position if ball goes straight for too long
-* Change domain in Footer
* Change layout on smaller screen sizes
## Nice to have