I'm not sure if this is necessarily a bug, but running multiple Write or FadeIn animations in a Succession animation does not introduce them independently, as one would expect.
Code:
MWE:
class Test(Scene):
def construct(self):
self.play(
Succession(
*(
Write(i)
for i in VGroup(Text("a"), Text("b"), Text("c")).arrange(DOWN)
)
)
)
Describe the bug
I'm not sure if this is necessarily a bug, but running multiple
Write
orFadeIn
animations in aSuccession
animation does not introduce them independently, as one would expect. Code:MWE:
Wrong display or Error traceback:
https://github.com/3b1b/manim/assets/83535735/8db25344-0ef6-4d59-b865-1d9d26d449dc
Additional context