This site requires JavaScript, please enable it in your browser!
Greenfoot back

SPower's Comments

Back to SPower's profile

It's great that you use the highscore features of Greenfoot 2.2! Did you find it out yourself, or in another way?
fun!
Why would you load if you also just could start the game immediately? :(
I would also be nice if you would add that shine effect you see in the last program of that article you found.
It's a great idea! You might want to checkout my Jump! scenario for some inspiration for the store you want to build :)
I tested it (I don't know why :) ), and if I said spin() and right(), the character will always be stuck at the right side of the world. I give you this tip: Instead of this code for right: [code]public void right() { setLocation(getX() + 5, getY()); }[/code] use this: [code]public void right() { move(5); }[/code] And do this for left(): [code] public void right() { move(-5); }[/code] I hope this helps. If you want, you can checkout my scenario Libary, which is basically a scenario with some great APIs. You can use that in this scenario if you want so.
I can't grab the flag :(. And from the trird level, I get scroll bars :( For the rest: great game!
How did you make the background moving?
SPowerSPower

2012/4/19

How did you make that you see "Loading highscores" instead of a scenario which is just doing nothing?