Closed
Description
Description of bug / unexpected behavior
when more than once Write() or FadeIn() sth within Succession(), it will show the mobjs to be displayed before the animation begin
look at the blue triangle at the very beginning of the video below. It's not supposed to be presented before the white line
Expected behavior
Just to display the mobjs one by one normally
How to reproduce the issue
Code for reproducing the problem
class Test(Scene):
def construct(self):
tri=Line(UP)
a=Succession(
FadeIn(Line()),
FadeIn(tri),
)
self.play(a)