[SOLVED] Displaying text in the middle of a movie stops transition
Posted: Fri Apr 24, 2020 6:40 am
I've got another interesting problem that came up.
What I'm trying to do is display some text at some point in the middle of a video file being played. Code would look something like this:
The problem is that after the movie finishes playing, the game sits there and without clicking, it won't transition to the next video file. Just to be sure, I commented out the line of text and it transitions without issue to the next video file.
I'm still thinking up solutions to this including possibly just cutting the video file in half and having the second half play after the text line displays but any suggestions are appreciated. /o/
What I'm trying to do is display some text at some point in the middle of a video file being played. Code would look something like this:
Code: Select all
# Movie is 10 sec long
show some_movie1
$renpy.pause(5.0, hard='True')
"Something was said in the middle of this movie!"
$renpy.pause(5.0, hard='True')
show some_othermovie1
I'm still thinking up solutions to this including possibly just cutting the video file in half and having the second half play after the text line displays but any suggestions are appreciated. /o/