Hello ! After trying hard on Twine+Sugarcube, I realized I was far better in DAZ3D than in coding... So I tried to "move" to Ren'Py. I have a fonctionnal presplash screen, a main and in-game menu working fine but have some issues with label splashscreen. I have a disclaimer picture, a question/answers to validate the +18, a very small webm video. I tried several methods but can't make the music play through the entire splashscreen and continue to the main menu ?!?
I tried both play movie and $ renpy.movie_cutscene but nothing really helped. My splashscreen code for the moment (It happened once the music - I had it coded after the disclaimer - continued after the video but I found a bug where Eileen shadow appeared just after the video and... On the disclaimer background) :
label splashscreen:
# 1. MUSIC
play music "audio/sinfull_desire.ogg" loop
# 2. DISCLAIMER
show image "images/disclaimer_18.png" with fade
# Reading Pause
$ renpy.pause(10.0)
show image "images/disclaimer_18.png":
alpha 0.5
linear 1.0 alpha 0.5
# 3. INTERACTION
menu:
"Do you agree the terms and conditions and confirm you're legal age in your country to play."
"I agree and confirm I have the legal age":
pass
"Quit":
$ renpy.quit()
# 4. VIDEO
$ renpy.movie_cutscene('video/intro_video.webm')
return
I tried both play movie and $ renpy.movie_cutscene but nothing really helped. My splashscreen code for the moment (It happened once the music - I had it coded after the disclaimer - continued after the video but I found a bug where Eileen shadow appeared just after the video and... On the disclaimer background) :
label splashscreen:
# 1. MUSIC
play music "audio/sinfull_desire.ogg" loop
# 2. DISCLAIMER
show image "images/disclaimer_18.png" with fade
# Reading Pause
$ renpy.pause(10.0)
show image "images/disclaimer_18.png":
alpha 0.5
linear 1.0 alpha 0.5
# 3. INTERACTION
menu:
"Do you agree the terms and conditions and confirm you're legal age in your country to play."
"I agree and confirm I have the legal age":
pass
"Quit":
$ renpy.quit()
# 4. VIDEO
$ renpy.movie_cutscene('video/intro_video.webm')
return