Don't propagate animating status to full extended family

This commit is contained in:
Grant Sanderson 2023-01-13 13:06:50 -08:00
parent 69ac946e63
commit c820cb4775

View file

@ -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