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

USER67's Comments

Back to USER67's profile

Should definately make a full version!
Tell me about it, me's is also hooked.
Nice Game!
I agree, that would be good.
i winned!
In the rocket class, you will find this private void. Adding the small pieces of code at the bottom which are accelerate(0.95); and move(); effectively introduce a degree of deceleration. This means the rocket won't keep drifting when you have stopped pressing "up"! private void ignite(boolean boosterOn) { int currentRotation = this.getRotation(); if (boosterOn == true) { this.setImage("rocketWithThrust.png"); this.addForce(new Vector(currentRotation, .3)); } else { this.setImage("rocket.png"); accelerate(0.95); } move(); }
USER67USER67

2013/1/23

Congrats on a great game. The simplicity makes it very addictive!
okay thanks mate