- Aug 24, 2018
- 12
- 143
Hello, I am having trouble trying to display a movie in Ren'py.
I am using the exact code from the Ren'Py documentation, but here is my exact script:
Now, when I use the show function, which the documentation also uses, it kind of inherits the previous scene and merges with the webm (which created some real horrors).
If I use the scene function, it does clear the previous scene, but the movie becomes kind of transparent and leaves a checkerboard pattern in the background. I have tried it with fade and dissolve and without any transition at all. The issue persists regardless.
I saw one suggestion that said create to create a black scene and then show the movie on top of that, but the black background makes the entire animation too dark.
I haven't found anyone else asking about this specifically, which makes me think the answer is probably obvious and I'm just too dense to see it, but I am out of ideas. I can't use the cutscene function, because I want dialogue over the top of it that the player will click through.
If you have any ideas, please let me know, I appreciate it!
I am using the exact code from the Ren'Py documentation, but here is my exact script:
image dbj1 = Movie(play="dbj1.webm", mask="dbj1.webm") scene dbj1 |
Now, when I use the show function, which the documentation also uses, it kind of inherits the previous scene and merges with the webm (which created some real horrors).
If I use the scene function, it does clear the previous scene, but the movie becomes kind of transparent and leaves a checkerboard pattern in the background. I have tried it with fade and dissolve and without any transition at all. The issue persists regardless.
I saw one suggestion that said create to create a black scene and then show the movie on top of that, but the black background makes the entire animation too dark.
I haven't found anyone else asking about this specifically, which makes me think the answer is probably obvious and I'm just too dense to see it, but I am out of ideas. I can't use the cutscene function, because I want dialogue over the top of it that the player will click through.
If you have any ideas, please let me know, I appreciate it!