It just plays reg screen, dont't have a screenshot, but theres nothin much to it. A red and yellow paddle at the bottom, an oval shapped ball on it, and randomly placed blue bricks at the top.
nice job guys been waiting on a decent breakout game. We are one step closer to Ipod dominance. Hey bro while I was playing the game, ball skimmed across the left hand portion of the screen all the way of the screen. Now it just floats in the the top left.
hey applehater, if you could add some background music(or random stuff on the zune) then it would be perfect.
__________________
Quote:
Originally Posted by Marcus Aurelius
Live a good life. If there are gods and they are just, then they will not care how devout you have been, but will welcome you based on the virtues you have lived by. If there are gods, but unjust, then you should not want to worship them. If there are no gods, then you will be gone, but will have lived a noble life that will live on in the memories of your loved ones.
Make sure you use this in the beginning of the game if you want shuffled music playback from the zune's media library:
Code:
using Microsoft.Xna.Framework.Audio;
using Microsoft.Xna.Framework.Content;
using Microsoft.Xna.Framework.Media;
using Microsoft.Xna.Framework.Storage;
and then add this in the main code just below : Content.RootDirectory = "Content";
Code:
MediaPlayer.IsShuffled = true;
MediaPlayer.IsRepeating = true;
MediaLibrary ml = new MediaLibrary();
SongCollection s = ml.Songs;
MediaPlayer.Play(s);
MediaPlayer.Queue.MoveNext();
MediaPlayer.IsVisualizationEnabled = true;