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

ManiacalPenguin

Welcome to my page

ManiacalPenguin's scenarios

This user has not made any scenarios.

ManiacalPenguin's collections

This user has no collections

Recent Comments

to fix it shooting out of the back, inplace of b.setRotation(getRotation); use this b.setRotation(getRotation + 180); now it should shoot forward.
the bullet should have a move method instead of a setLocation(), and use this as the shooting code: 1. Bullet b = new Bullet(); 2. getWorld().addObject(b , getX(), getY()); 3. b.setRotation(getRotation);