Skip to content

Commit f9e6090

Browse files
Add missing AnimationProtocol method
1 parent d984976 commit f9e6090

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

manim/animation/protocol.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,12 @@ def update_rate_info(
6767
the animation's corresponding attribute.
6868
"""
6969

70+
def update_mobjects(self, dt: float) -> object:
71+
"""Update the mobjects during the animation.
72+
73+
This method is called every frame of the animation
74+
"""
75+
7076

7177
class MobjectAnimation(AnimationProtocol, Protocol[M]):
7278
mobject: M

0 commit comments

Comments
 (0)