Hi! Im making a game. in order to make an animation i have linked together a bunch of pictures with delays in between in order to make it look like its moving. However when i do this i didnt realize it pauses greenfoot as a whole. Is there a way to pause just the picture without making the entire game pause. This is my code for setting the pictures. it needs to finish running this before it does anything else. Any help? TY in advance.
public void act() { int page =1; while(page!= 18) { Greenfoot.delay(5); setImage("exp"+page+".gif"); page++; } }