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

2020/7/10

pause button

Roshan123 Roshan123

2020/7/10

#
in every scenario their are 2 buttons(pause,start) is their any way if anybody clicks the pause button then the scenario will not be paused
danpost danpost

2020/7/10

#
Roshan123 wrote...
in every scenario their are 2 buttons(pause,start) is their any way if anybody clicks the pause button then the scenario will not be paused
Why would you want that? Probably not wise to do it; but maybe this would do it:
public void stopped()
{
    Greenfoot.start();
}
when put in worlds you do not want paused.
You need to login to post a reply.