Nuklhed92, first off, all the ones that rows that contain all zeros below your last line that has numbers can be deleted to look like this
Code:
case 13: level1 = new int[,]{
{0,1,1,0,0,0,0,0,0,0,0},
{1,0,0,1,2,0,0,0,0,0,0},
{1,0,0,0,0,0,0,0,0,0,0},
{1,0,0,0,0,3,0,0,0,1,0},
{1,0,1,1,2,3,3,3,1,0,1},
{1,0,0,1,2,3,0,3,1,0,1},
{1,1,1,1,2,3,0,3,0,1,0}};
break;
Then im guessing under the getColumns() method you didnt put anything, thats why its not giving you an error but its not loading your level, under the getColumns() method at the very end you need to add this
Code:
case 13: columns = 7;
break;
(thats for my edited one, for the one you posted it would be "columns = 13")(I know it says columns but its supposed to be rows, i just had them confused when i started writing and now its too far in to change everything)
Quote:
|
Originally Posted by saab900
-Random level does not work for me. If I click it once nothing happens if I click it a couple times the game crashes.
|
I dont know what to tell you here, wait for my next release and see if it helps. If you had previously installed older versions through the zune go into the games menu and select my game and instead of play try to delete it and then try to deploy it again, random levels work fine for me.(Do you have an older or newer zune?)
Quote:
|
Originally Posted by saab900
-I thought the game looked off center but then I realized that the right side black bar sticks out to the left farther than the right. This is causing some ball rebound problems. The paddle cant go past the black bar but apparently the ball can go all the way to the edge. That allows the ball to go further to the right than the paddle can go so saving the ball in the bottom right corner is impossible.
|
There are no real bars anywhere, i just use x and y positions of the screen, i guess my math was off for the right side ill try to see if i can fix it.
Quote:
|
Originally Posted by saab900
-Ball rebound is odd in my opinion. When you start the ball on the first bounce I would expect it to go straight up but it goes up at an angle. Also when the ball is comming from the right to the left I would expect it to bounce off the paddle and continue left. Right now it returns right.
|
Yes, in V. 0.0.7 the collision was fixed from 0.0.6 but it wasnt great, ive made it better in my upcoming release(Which i hope to release tonight)