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?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | 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()); } } } |