This site requires JavaScript, please enable it in your browser!
Greenfoot back
moobe
moobe wrote ...

2013/1/20

Is it possible to change the image of a world?

moobe moobe

2013/1/20

#
Hi, this code here doesn't work:
 Level7 level7 = new Level7();
        level7.setImage("Background.jpg");
Is there a way to do this?
danpost danpost

2013/1/20

#
if 'level7' is a world object, then you need
level7.setBackground("Background.jpg");
moobe moobe

2013/1/21

#
Thank you so much dan!!! You are the best ;)
You need to login to post a reply.