Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions manim/scene/scene.py
Original file line number Diff line number Diff line change
Expand Up @@ -800,6 +800,9 @@ def play_internal(self, *args, **kwargs):
self.add_static_frames(animations[0].duration)
return

for animation in animations:
animation.begin()

moving_mobjects = None
static_mobjects = None
duration = None
Expand All @@ -823,9 +826,6 @@ def play_internal(self, *args, **kwargs):
self.static_image = self.renderer.get_frame()
time_progression = self.get_animation_time_progression(animations)

for animation in animations:
animation.begin()

last_t = 0
for t in time_progression:
dt = t - last_t
Expand Down