This page is out of date

You've reached a page on the Ren'Py wiki. Due to massive spam, the wiki hasn't been updated in over 5 years, and much of the information here is very out of date. We've kept it because some of it is of historic interest, but all the information relevant to modern versions of Ren'Py has been moved elsewhere.

Some places to look are:

Please do not create new links to this page.


Letting images appear after a while

You can let an image appear 3 seconds after the text appears using ATL:

    show eileen happy:
        alpha 0.0
        time 3.0
        alpha 1.0
    e "this is the text which appears 3 seconds before the image 'eileen happy' appears"

You can let the image fade in over the course of 3 seconds, starting 2 seconds after the text appeared:

    show eileen happy:
        alpha 0.0
        time 2.0
        linear 3.0 alpha 1.0
    e "this is the text which appears 2 seconds before the image 'eileen happy' fades in"