I want my credits movie to play at the end of my game, but before it plays, Ren'Py crashes.
Could someone please help me find a solution to this? I thought I was finally past movie playing issues...
What you need to know:
- I'm using the latest version of Ren'Py (6.15.6.372).
- My game's dimension is 1280x800. (don't judge, please)
- My video is 1280x720.
- I'm using a Mac. (OS X 10.8.4)
My code right now:
Code: Select all
label credits:
hide window
stop music fadeout 5.0
show movie
play movie "Credits.mov"
pause 120.5 #I've tried with and without the pause. Same result: crash.
stop movie
hide movieI've tried the "inside displayable" route...
Code: Select all
init:
image movie = Movie(size=(1280, 800), xalign=0.5, yalign=0.5)Code: Select all
init:
image movie = Movie(size=(1280, 800))I also tried changing the dimensions of my game temporarily to see if it was that that was causing the problem, but no. Whether the game was 1280x800 or 1280x720, it still crashed.
Now, the cutscene doesn't work at all. That's what I first tried.
The code:
Code: Select all
$ renpy.movie_cutscene("Credits.mov")Could this be an internal issue, or am I just not getting something here?
Thanks all,
-Q