Hey, I need some help with my Game. I would like it to run a method, but only when my key is released.
public void startgame()
{
cloudy myWorld = (cloudy)getWorld();
if (Greenfoot.isKeyDown("space")) {
myWorld.prepare();
myWorld.fixtwo2();
}
}
This is what I have so far.

