Sorry for asking for help twice in a row but I've been doing a lot of coding and am now stuck again. I am using danpost's SWorld as a super world to have scrolling in my world. My issue comes when I try to switch the world to a new world, still under the super world. This creates a new world, however the background image does not show up. The background image is defined the same way in the second world as it is in the first world (copy/pasted actually). Here is my code for switching the image:
Thanks in advance for all of your help
if (Greenfoot.isKeyDown("p")) { Greenfoot.setWorld(new WorldTwo()); }