Page 1 of 1

[Public Domain] Animated Rain Overlay Background

Posted: Thu Mar 26, 2020 6:54 pm
by qirien
Want to make it look like it's raining? I found a lot of rain textures that were not free or didn't work well with animation, so I used this tutorial to make my own!

These are 1280x720, but could be resized to other resolutions.

Use them in Ren'Py with code like this:

Code: Select all

    image rain:
        "images/bg/rain1.png"
        0.1
        "images/bg/rain2.png"
        0.1
        "images/bg/rain3.png"
        0.1
        repeat
And then when you want to use it, add it on top of all the elements in a scene. If you need to show a sprite later, you can say it's behind the rain like this:

Code: Select all

scene forest
show eileen happy
show rain
eileen "I love the rain!"
show python behind rain
python "Me too..."
CC-0, public domain, use it for whatever you want. Attribution optional but if you want, leave a message if I helped you. :-)

Re: [Public Domain] Animated Rain Overlay Background

Posted: Thu Mar 26, 2020 7:13 pm
by GoAskAlex
definitely saving for later use. thank you for sharing this!!