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.


# Este archivo ofrece un ejemplo de cómo las entradas en el menú
# principal y el menú de juego pueden ser reposicionadas en la
# pantalla. A diferencia de otros extras, no intentamos que esto
# se haga tal cual, pero puede ser copiado y cambiado a las 
# posiciones de los botones en la pantalla.

# Los botones no deben encimarse y ciertas configuraciones pueden
# hacer los botones inaccesibles a la navegación por teclado.
# No traduzcas los comandos. son comandos, no etiquetas de botón.

init:

    python hide:

        library.main_menu_positions = {
            'Start Game' : dict(xpos=400, ypos=400, xanchor='left', yanchor='top'),
            'Continue Game' : dict(xpos=450, ypos=430, xanchor='left', yanchor='top'),
            'Preferences' : dict(xpos=500, ypos=460, xanchor='left', yanchor='top'),
            'Quit Game' : dict(xpos=550, ypos=490, xanchor='left', yanchor='top'),
            }

        library.game_menu_positions = {
            'Return' : dict(xpos=400, ypos=400, xanchor='left', yanchor='top'),
            'Preferences' : dict(xpos=450, ypos=430, xanchor='left', yanchor='top'),
            'Save Game' : dict(xpos=500, ypos=460, xanchor='left', yanchor='top'),
            'Load Game' : dict(xpos=550, ypos=490, xanchor='left', yanchor='top'),
            'Main Menu' : dict(xpos=600, ypos=520, xanchor='left', yanchor='top'),
            'Quit' : dict(xpos=650, ypos=550, xanchor='left', yanchor='top'),
            }