Hey, i have a Problem with an actor wich should spawn another Actor
why dose it not work?
if("left".equals(Greenfoot.getKey()))
{setRotation(0);
Normalbullet normalbullet = new Normalbullet();
getWorld().addObject(normalbullet, getX(), getY());
normalbullet.setRotation(getRotation());
}}}

