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

2021/5/21

how make the background of world changed for 10 sec

mariq_rasyid29 mariq_rasyid29

2021/5/21

#
im used array as the background, here the code :
String Wallpaper[]=
{"Forest 1.png", "Forest 2.png", "Forest 3.png", "Forest 4.png", "Foreset 5.png",};
 
for changed the wallpaper for 10 sec idk the code is
RcCookie RcCookie

2021/5/21

#
// Globally in world class
public static final long DURATION = 10000;

private long start;

// In act
if(System.currentTimeMillis() > start + DURATION) {
    changeWallpaper(); // create a method for this
    start = System.currentTimeMillis();
}
You need to login to post a reply.