From caca6d0c0e1e6ede796939b16e858b2f30d82684 Mon Sep 17 00:00:00 2001 From: Grant Sanderson Date: Sun, 16 Aug 2020 09:44:28 -0700 Subject: [PATCH] Fix Eyes --- manimlib/for_3b1b_videos/pi_creature.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manimlib/for_3b1b_videos/pi_creature.py b/manimlib/for_3b1b_videos/pi_creature.py index 4d02ebfe..9d1ba453 100644 --- a/manimlib/for_3b1b_videos/pi_creature.py +++ b/manimlib/for_3b1b_videos/pi_creature.py @@ -337,7 +337,7 @@ class Eyes(VMobject): VMobject.__init__(self, **kwargs) self.body = body eyes = self.create_eyes() - self.become(eyes, copy_submobjects=False) + self.set_submobjects(eyes.submobjects) def create_eyes(self, mode=None, thing_to_look_at=None): if mode is None: @@ -372,7 +372,7 @@ class Eyes(VMobject): mode=mode, thing_to_look_at=thing_to_look_at ) - self.become(new_eyes, copy_submobjects=False) + self.set_submobjects(new_eyes.submobjects) return self def look_at(self, thing_to_look_at):