I want to make one of my actors move in a square, but the move and the turn command make it move in a circle.
Is there anyway I could make the actors move for (x) amount of steps, and then move down (y) amount of steps and then back around?
Thanks
This does not deal directly with greenfoot, but with programming in the java language (which greenfoot uses). You have to add an instance int field to the class to count the steps. You should probably check out the Java tutorials, particularly the trail on Learning the Java Language. There is an abundance of information there.