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.


Efecto simple de Destello

Ésta es la versión del efecto que se uso en "Ori, Ochi, Onoe". Está diseñada para trabajar con Ren'Py 5.6.1 y posteriores.

El efecto puede ser usado como transición para recuerdos, efectos de saturación de luz y mucho más.

init:
    image bg road = "road.jpg"

    $ flash = Fade(.25, 0, .75, color="#fff")

label start:
    scene black # Or whatever image you're transitioning from.

    "Vamos a cambiar el fondo en un destello."

    scene bg road
    with flash

    "Wow!"