mirror of
https://github.com/3b1b/manim.git
synced 2025-08-20 05:14:12 +00:00
Fixed OpeningManimExample
This commit is contained in:
parent
4aa63198d7
commit
4fd27febf9
1 changed files with 2 additions and 2 deletions
|
@ -31,7 +31,7 @@ class OpeningManimExample(Scene):
|
||||||
transform_title.to_corner(UP + LEFT)
|
transform_title.to_corner(UP + LEFT)
|
||||||
self.play(
|
self.play(
|
||||||
Transform(title, transform_title),
|
Transform(title, transform_title),
|
||||||
OldLaggedStart(FadeOutAndShiftDown, basel),
|
LaggedStart(*map(FadeOutAndShiftDown, basel)),
|
||||||
)
|
)
|
||||||
self.wait()
|
self.wait()
|
||||||
|
|
||||||
|
@ -44,7 +44,7 @@ class OpeningManimExample(Scene):
|
||||||
self.play(
|
self.play(
|
||||||
FadeOut(title),
|
FadeOut(title),
|
||||||
FadeInFromDown(grid_title),
|
FadeInFromDown(grid_title),
|
||||||
Write(grid),
|
ShowCreation(grid, run_time=3, lag_ratio=0.1),
|
||||||
)
|
)
|
||||||
self.wait()
|
self.wait()
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue