shannontesla
shannontesla

Reputation: 970

Display two animations at the same time with Manim

I am trying to run two animations at the same time, for example: a dot falling between two letters as those letters make space in between them. Any advice on how to do so?

Upvotes: 17

Views: 9692

Answers (1)

paradox
paradox

Reputation: 248

To apply two transformations at the same time, you can do self.play(Transformation1, Transformation2). This way, since the two Transformations are in the same play statement, they will run simultaneously.

Upvotes: 23

Related Questions