From afb67298ecc0d197a5ac511265a9bfaa6a3284d2 Mon Sep 17 00:00:00 2001 From: Iggy Date: Wed, 14 Aug 2024 22:25:47 -0300 Subject: [PATCH] Implement updated way of playing movies --- ....fang-and-anon-cut-class-to-talk-on-the-roof.rpy | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/game/script/5.fang-and-anon-cut-class-to-talk-on-the-roof.rpy b/game/script/5.fang-and-anon-cut-class-to-talk-on-the-roof.rpy index 1057c59..6e55222 100644 --- a/game/script/5.fang-and-anon-cut-class-to-talk-on-the-roof.rpy +++ b/game/script/5.fang-and-anon-cut-class-to-talk-on-the-roof.rpy @@ -7,6 +7,8 @@ init python: renpy.play('audio/effects/carKick2.ogg', channel='audio') # renpy.play('audio/effects/carSuspension1.ogg', channel='audio') +image fang_tail_movie = Movie(channel="movie_dp", loop=True, play="images/animations/fang tail.webm") # New way of playing movies as of Renpy 8.1 + label chapter_5: # Gardening Club @@ -551,7 +553,7 @@ label chapter_5: show anon: easein_back 0.5 xalign 0.2 - label movie: + # label movie: play sound 'audio/effects/slapstickPunch.ogg' A "FANG!" with vpunch @@ -559,7 +561,8 @@ label chapter_5: play ambient 'audio/effects/clipLoop.ogg' fadein 1 play ambient1 'audio/effects/outdoorNatureLoop.ogg' fadein 1 - scene fang tail with Dissolve(1) + # scene fang tail with Dissolve(1) + show fang_tail_movie with Dissolve(1) # change how the movie is played "Through my blurred vision I can make out Fang’s tail, slowly shifting side to side." @@ -4668,6 +4671,6 @@ label chapter_5: $ next_story_chapter() # I'm guessing this is for the gallery? -label fang_movie: - scene fang tail with fade - "" +# label fang_movie: +# scene fang tail with fade +# ""