diff --git a/manimlib/scene/scene.py b/manimlib/scene/scene.py index 6776da62..2a0ca6b4 100644 --- a/manimlib/scene/scene.py +++ b/manimlib/scene/scene.py @@ -503,7 +503,7 @@ class Scene(Container): self.update_mobjects(dt) self.update_frame() self.add_frames(self.get_frame()) - if stop_condition and stop_condition(): + if stop_condition is not None and stop_condition(): time_progression.close() break elif self.skip_animations: