Page 1 of 1

Bug? Ren'py Movie doesn't work with mask movies

Posted: Wed Jul 14, 2021 5:20 pm
by SypherZent
I created two movies, one of them is an alpha mask movie, just like it explains in this post:
viewtopic.php?t=36951

And here is how I defined the movie:

Code: Select all

image test_movie = Movie(fps=24, size=(1920,1080), loop=True, play="movies/particles.webm", mask="movies/particles_mask.webm")
In the game script, here is how I call the movie:

Code: Select all

    scene alchemist home day
    show test_movie
    with fade
And the movie appears with a black background. It's supposed to be on a transparency, but the mask property just isn't working properly.

Please fix this, or if I'm doing something wrong, please let me know (and if something is wrong, maybe correct the documentation because I followed it to the letter).

Re: Bug? Ren'py Movie doesn't work with mask movies

Posted: Wed Jul 14, 2021 5:24 pm
by SypherZent
Found the issue. Had to remove the fps and size parameters. Works when not using those.

Hope the info helps.