Skip to content

Commit a7fb0ee

Browse files
committed
Remove Scene.force_skipping()
1 parent 0fd9074 commit a7fb0ee

File tree

1 file changed

+0
-16
lines changed

1 file changed

+0
-16
lines changed

manim/scene/scene.py

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -971,22 +971,6 @@ def wait_until(self, stop_condition, max_time=60):
971971
"""
972972
self.wait(max_time, stop_condition=stop_condition)
973973

974-
def force_skipping(self):
975-
"""
976-
This forces the skipping of animations,
977-
by setting original_skipping_status to
978-
whatever skip_animations was, and setting
979-
skip_animations to True.
980-
981-
Returns
982-
-------
983-
Scene
984-
The Scene, with skipping turned on.
985-
"""
986-
self.original_skipping_status = file_writer_config["skip_animations"]
987-
file_writer_config["skip_animations"] = True
988-
return self
989-
990974
def revert_to_original_skipping_status(self):
991975
"""
992976
Forces the scene to go back to its original skipping status,

0 commit comments

Comments
 (0)