We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57158c3 commit 610f85cCopy full SHA for 610f85c
manim/animation/animation.py
@@ -8,6 +8,7 @@
8
9
import numpy as np
10
11
+from .. import logger
12
from ..mobject.mobject import Mobject
13
from ..utils.config_ops import digest_config
14
from ..utils.rate_functions import smooth
@@ -117,6 +118,10 @@ def update(self, alpha):
117
118
This method shouldn't exist, but it's here to
119
keep many old scenes from breaking
120
"""
121
+ logger.warning(
122
+ "animation.update() has been deprecated. "
123
+ "Please use animation.interpolate() instead."
124
+ )
125
self.interpolate(alpha)
126
127
def interpolate_mobject(self, alpha):
0 commit comments