The concept of the Run button invoking an infinite loop of act( ) calls is quite straight forward. Even without the knowledge of loops, beginners can write programs, just by conditional moves within the act method.
On the other hand, some methods (Clean Code!) just include loops, or at least a finite amount of move( ) commands -- e.g. goAroundTree( ). Such pieces of code will be displayed as a single jump.
Trying wait or pause methods didn't lead to the expected result, i.e. refreshing the world within a method call or loop.
Is there a chance to solve this? Or is merely the act method capable of refreshing the world?
Cheers
GreenJay