From 009f9dd18b6cf2ae408e27adf56e74de6162eabc Mon Sep 17 00:00:00 2001 From: Grant Sanderson Date: Thu, 2 Feb 2023 18:16:44 -0800 Subject: [PATCH] Don't call become at the end of Transform --- manimlib/animation/transform.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/manimlib/animation/transform.py b/manimlib/animation/transform.py index 8192a36e..fdc262a9 100644 --- a/manimlib/animation/transform.py +++ b/manimlib/animation/transform.py @@ -74,8 +74,6 @@ class Transform(Animation): def finish(self) -> None: super().finish() self.mobject.unlock_data() - if self.target_mobject is not None and self.rate_func(1) == 1: - self.mobject.become(self.target_mobject) def create_target(self) -> Mobject: # Has no meaningful effect here, but may be useful