Advertisement
TheoremOfBeethoven

ManimTutorial/RenderingSettings

May 24th, 2019
1,621
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.81 KB | None | 0 0
  1. #from manimlib.imports import *                 #New version
  2. from big_ol_pile_of_manim_imports import *
  3.  
  4. class RenderingSettings(Scene):
  5.     def construct(self):
  6.         # Texts
  7.         obj1=TextMobject("A")
  8.         obj2=TextMobject("B").to_corner(UL)
  9.         obj3=TextMobject("C").to_corner(UR)
  10.         obj4=TextMobject("D").to_corner(DR)
  11.         obj5=TextMobject("E").to_corner(DL)
  12.         # Animations
  13.         #
  14.         self.play(Write(obj1)) #0
  15.         self.wait(2)           #1
  16.         #
  17.         self.play(Write(obj2)) #2
  18.         self.wait(2)           #3
  19.         #
  20.         self.play(Write(obj3)) #4
  21.         self.wait(2)           #5
  22.         #
  23.         self.play(Write(obj4)) #6
  24.         self.wait(2)           #7
  25.         #
  26.         self.play(Write(obj5)) #8
  27.         self.wait(2)           #9
  28.         #
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement