I have seen quite a few people with the same problem, but the solutions doesn't apply to me.
That is, because i got the randomTurn(); method
So, how do I keep the image still, and not turn, when the instance does?
1 2 3 4 5 6 7 | public void randomTurn() { if (Greenfoot.getRandomNumber( 100 )< 10 ) { turn(Greenfoot.getRandomNumber( 90 )- 45 ); } } |