You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -65,7 +65,7 @@ An alternative way to install Manim Slides is to clone the git repository, and i
65
65
<!-- start usage -->
66
66
67
67
Using Manim Slides is a two-step process:
68
-
1. Render animations using `Slide` (resp. `ThreeDSlide`) as a base class instead of `Scene` (resp. `ThreeDScene`), and add calls to `self.pause()` everytime you want to create a new slide.
68
+
1. Render animations using `Slide` (resp. `ThreeDSlide`) as a base class instead of `Scene` (resp. `ThreeDScene`), and add calls to `self.next_slide()` everytime you want to create a new slide.
69
69
2. Run `manim-slides` on rendered animations and display them like a *Power Point* presentation.
70
70
71
71
The documentation is available [online](https://eertmans.be/manim-slides/).
@@ -87,14 +87,14 @@ class BasicExample(Slide):
87
87
dot = Dot()
88
88
89
89
self.play(GrowFromCenter(circle))
90
-
self.pause() # Waits user to press continue to go to the next slide
90
+
self.next_slide() # Waits user to press continue to go to the next slide
0 commit comments