mirror of
https://github.com/3b1b/manim.git
synced 2025-08-05 16:49:03 +00:00
Don't propagate animating status to full extended family
This commit is contained in:
parent
69ac946e63
commit
c820cb4775
1 changed files with 1 additions and 1 deletions
|
@ -828,7 +828,7 @@ class Mobject(object):
|
||||||
return self._is_animating or self.has_updaters
|
return self._is_animating or self.has_updaters
|
||||||
|
|
||||||
def set_animating_status(self, is_animating: bool, recurse: bool = True):
|
def set_animating_status(self, is_animating: bool, recurse: bool = True):
|
||||||
for mob in (*self.get_family(recurse), *self.get_ancestors(extended=True)):
|
for mob in (*self.get_family(recurse), *self.get_ancestors()):
|
||||||
mob._is_animating = is_animating
|
mob._is_animating = is_animating
|
||||||
return self
|
return self
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue