Stoppe das Programm#
At the end of a game or a level change, there are often certain actions that need to be performed, such as resetting the playing field or pausing the game. The following commands are available for this:
world.stop()
: Stops the playing field. No further actions are performed and no events are queried.world.start()
: Resets a previousstop
command and allows the game to continue.world.is_running
: Mit dieser Variable kannst du überprüfen, ob das Spielfeld gerade aktiv ist.world.clear()
: Entfernt alle Figuren vom Spielfeld.world.reset()
: Löscht das aktuelle Spielfeld und erstellt ein neues, indem alle Figuren wie in der Methodeworld.on_setup()
definiert, neu erzeugt werden.