Skip to content

Commit

Permalink
added fadeout to commitment and shortened some wait times
Browse files Browse the repository at this point in the history
  • Loading branch information
martawleklinska committed Jul 12, 2024
1 parent 55a02d7 commit 2994c34
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions zkmarek/video/slides/teaser3/intuition.py
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ def animate_in(self, scene):
scene.play(Indicate(public_key, color = HIGHLIGHT_COLOR), run_time=0.7)
scene.wait(5)
scene.play(ReplacementTransform(public_key, priv_pub))
scene.wait(3.8)
scene.wait(2)
self.new_subsection(
scene, "add and multiply", "data/sound/teaser3/slide2-4.mp3"
)
Expand Down Expand Up @@ -443,7 +443,7 @@ def pairings_animation(self, scene):
def animate_tree(self, scene):
tree = VerkleTree().scale(0.8).shift(UP)
scene.play(Create(tree))
scene.wait(4)
scene.wait(3)
scene.play(FadeOut(tree))

def animtion_commitment(self, scene):
Expand All @@ -459,4 +459,5 @@ def animtion_commitment(self, scene):

scene.play(GrowArrow(arrow1))

scene.wait(3)
scene.wait(2)
scene.play(FadeOut(arrow1, commitment, committer, committer_label, verifier, verifier_label))

0 comments on commit 2994c34

Please sign in to comment.