Disable the expensive Visualization

If students solve complex problems, they will eventually move Robo``a lot. To animate the actions of ``Robo we copy the whole world in its current state. This can lead to significant memory requirements and can drastically influence computation times. Therefore, deactivating the recording of the actions and/or the printing of each action is recommended.

Control the Printing

roboworld.Robo.disable_print(self) None

Deactivates the printing of executed Robo-instructions

roboworld.Robo.enable_print(self) None

Activates the printing of executed Robo-instructions.

Control the Recording

roboworld.World.pause_recordings(self)

Pauses all recorders.

roboworld.World.resume_recordings(self)

Resumes all recorders.

roboworld.World.clear_recordings(self)

Clears/resets all recorders. This will free the memory required for the recordings.

roboworld.World.disable_animation(self)

Pauses and clears/resets all recorders.

roboworld.World.enable_animation(self)

Resumes all recorders (identical to resume_recordings())