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.
Many games offer a function to show the background and sprites or event CG without the text window showing. This is a game menu screen that hides everything and returns on a click anywhere. To access this, you have to add an item like
( "gm_image", u"Show Image", _intra_jumps("_gm_image", "intra_transition"), 'True' )
to your config.game_menu array. Not that this will not hide the overlay; you have to clear it too if it's showing anything at this point.
Note that Ren'Py provides this behaviour by default on a press of the "h" key.
label _gm_image:
# game menu without _anything_ shown.
python:
# use the predefined transition
renpy.transition(config.intra_transition)
# Wait for a mouse click before continuing.
renpy.pause()
renpy.transition(config.intra_transition)
renpy.jump("_return") # returns to the game directly; could also possibly point back to the standard variable _game_menu_screen