mirror of
https://github.com/3b1b/manim.git
synced 2025-04-13 09:47:07 +00:00
Fix remover=True case for FadeTransform
This commit is contained in:
parent
223d671eea
commit
ec42326618
1 changed files with 2 additions and 1 deletions
|
@ -134,7 +134,8 @@ class FadeTransform(Transform):
|
|||
Animation.clean_up_from_scene(self, scene)
|
||||
scene.remove(self.mobject)
|
||||
self.mobject[0].restore()
|
||||
scene.add(self.to_add_on_completion)
|
||||
if not self.remover:
|
||||
scene.add(self.to_add_on_completion)
|
||||
|
||||
|
||||
class FadeTransformPieces(FadeTransform):
|
||||
|
|
Loading…
Add table
Reference in a new issue