I want the startscreen to fade when I press enter and of course to open the myworld world. Is there any option to do that?
import greenfoot.*;
public class Starting_Screen extends World
{
public Starting_Screen()
{
super(1195, 730, 1);
}
public void act()
{
if(Greenfoot.isKeyDown("enter"))
{
Greenfoot.setWorld(new MyWorld());
}
}
}

