I have a Square
, and I want to move and scale it at the same time:
sq = Square()
self.add(sq)
self.play(ApplyMethod(sq.scale, 0.5), ApplyMethod(sq.move_to, UP*3))
However, the first animation is skipped and only the last one works.
Is there a simpler solution than using Transform
?