Hi,
I am using this coding to make an actor remove on click, however when the actor appears, I want the game to not be running, then when the user clicks on this particular actor it begins going again. I thought woould work in pausing the game but has no effect
Greenfoot.stop()
public void act()
{
if (Greenfoot.mouseClicked(this)){
Greenfoot.stop();
getWorld().removeObject(this);
Greenfoot.start();
}
}
