Can someone explain why my background has been drawn a couple of times this way?
(This is a subclass of class X. Class X is the subclass of World).
What I hoped for, is that the background just moved 100 down and 100 to the right.
Yours,
Dennis
public LevelOne()
{
background = new GreenfootImage("landscape.png");
setBackground(background);
getBackground().drawImage(background, 100, 100);
}

