mirror of
https://git.cavemanon.xyz/Cavemanon/SnootGame.git
synced 2025-01-22 17:26:20 +01:00
Implement updated way of playing movies
This commit is contained in:
parent
0a4ab9609a
commit
afb67298ec
1 changed files with 8 additions and 5 deletions
|
@ -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
|
||||
# ""
|
||||
|
|
Loading…
Reference in a new issue