Hi im new to Greenfoot and was wondering how I can use an image as a Background. When I create a new world class I can select an image but it doesnt appear in the world. It just says "Instantiate a new World object.


1 2 | GreenfootImage background= new GreenfootImage( "yourImage.png" ); setBackground(background); |
1 | Greenfoot.setBackground(...); |