We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
git bisect says that merging #562 introduced a problem with Mobject.become: The example
git bisect
Mobject.become
class FadeInAndOut(Scene): def construct(self): square = Square(color=BLUE).shift(2 * UP) annotation = Text("Fade In", height=0.8) self.add(annotation) self.play(FadeIn(square)) annotation.become(Text("Fade Out", height=0.8)) self.add(annotation) self.play(FadeOut(square))
from our documentation renders as
Same thing if the call to become is replaced by playing a Transform animation; the old text is simply kept on screen.
become
Transform
Originally posted by @behackl in #562 (comment)
The text was updated successfully, but these errors were encountered:
eulertour
Successfully merging a pull request may close this issue.
git bisect
says that merging #562 introduced a problem withMobject.become
: The examplefrom our documentation renders as
Same thing if the call to
become
is replaced by playing aTransform
animation; the old text is simply kept on screen.Originally posted by @behackl in #562 (comment)
The text was updated successfully, but these errors were encountered: