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

2018/3/21

Tick Speed in Greenfoot

Agent40 Agent40

2018/3/21

#
Is there a way to change the tick speed in Greenfoot? I know the default tick speed is 60/s but I want to know if it's possible to make it 128/s.
danpost danpost

2018/3/21

#
You can change the speed of the scenario by moving the handle on the speed slider to the right of the Run button or you can set it programmatically (usually in the world constructor) using:
1
Greenfoot.setSpeed(60);
You need to login to post a reply.