Ren'Py Home Page

Table Of Contents

Previous topic

Special Screen Names

Next topic

Drag and Drop

Created using Sphinx.

Configuration Variables

Configuration variables control the behavior of Ren'Py's implementation, allowing Ren'Py itself to be customized in a myriad of ways. These range from the common (such as changing the screen size) to the obscure (adding new kinds of archive file).

Ren'Py's implementation makes the assumption that, once the GUI system has initialized, configuration variables will not change. Changing configuration variables outside of init blocks can lead to undefined behavior. Configuration variables are not part of the save data.

Configuration variables are often changed in init python blocks:

init python:

    # Use a widescreen resolution.
    config.screen_width = 1024
    config.screen_height = 600

Commonly Used

config.developer = False

If set to True, developer mode is enabled. Developer mode gives access to the shift+D developer menu, shift+R reloading, and various other features that are not intended for end users.

The default game template sets this to True. We suggest setting it to False before releasing a game.

config.help = "README.html"

This controls the functionality of the help system invoked by the help button on the main and game menus, or by pressing f1 or command-?.

If None, the help system is disabled and does not show up on menus. If a string corresponding to a label found in the script, that label is invoked in a new context. This allows you to define an in-game help-screen. Otherwise, this is interpreted as a filename relative to the base directory, that is opened in a web browser.

config.screen_height = 600

The height of the screen.

config.screen_width = 800

The width of the screen.

config.translations = dict(...)

This is a map used to translate text in the game menu into your language. See Localizing Ren'Py for how to use it, and here for a list of available translations.

config.window_icon = None

If not None, this is expected to be the filename of an image giving an icon that is used for the window on Linux and Mac OS X. This should be a large image, with 8-bit alpha.

This should generally be a PNG format file.

config.windows_icon = None

If not None, this is expected to be the filename of an image giving an icon that is used for the window on Windows. This should be a 32x32 image with 1-bit alpha. (Opaque images work the best.)

This should be a PNG format file.

config.window_title = "A Ren'Py Game"

The static portion of the title of the window containing the Ren'Py game. _window_subtitle is appended to this to get the full title of the window.

config.save_directory = "..."

This is used to generate the directory in which games and persistent information are saved. The name generated depends on the platform:

Windows
%APPDATA%/RenPy/save_directory
Mac OS X
~/Library/RenPy/save_directory
Linux/Other:
~/.renpy/save_directory

Setting this to None creates a "saves" directory underneath the game directory. This is not recommended, as it prevents the game from being shared between multiple users on a system. It can also lead to problems when a game is installed as Administrator, but run as a user.

This must be set in a python early block, so that persistent information can be loaded before init code is run.

The user may change the directory. Code that needs to know the save directory should read config.savedir instead of this variable.

Occasionally Used

config.adv_nvl_transition = None

A transition that is used when showing NVL-mode text directly after ADV-mode text.

config.after_load_transition = None

A transition that is used after loading, when entering the loaded game.

config.auto_load = None

If not None, the name of a save file to automatically load when Ren'Py starts up. This is intended for developer use, rather than for end users. Setting this to "1" will automatically load the game in save slot 1.

config.automatic_images = None

If not None, this causes Ren'Py to automatically define images.

When not set to None, this should be set to a list of separators. (For example, [ ' ', '_', '/' ].)

Ren'Py will scan through the list of files on disk and in archives. When it finds a file ending with .png or .jpg, it will strip the extension, then break the name at separators, to creatge an image name. If the name consists of at least two components, and no image with that name already is defined, Ren'Py will define that image to refer to a filename.

With the example list of separators, if your game directory contains:

  • eileen_happy.png, Ren'Py will define the image "eileen happy".
  • lucy/mad.png, Ren'Py will define the image "lucy mad".
  • mary.png, Ren'Py will do nothing. (As the image does not have two components.)
config.automatic_images_strip = []

A list of strings giving prefixes that are stripped out when defining automatic images. This can be used to remove directory names, when directories contain images.

config.debug = False

Enables debugging functionality (mostly by turning some missing files into errors.) This should always be turned off in a release.

config.debug_image_cache = False

If True, Ren'Py will print the contents of the image cache to standard output (wherever that goes) whenever the contents of the image cache change.

config.debug_sound = False

Enables debugging of sound functionality. This disables the supression of errors when generating sound. However, if a sound card is missing or flawed, then such errors are normal, and enabling this may prevent Ren'Py from functioning normally. This should always be False in a released game.

config.default_afm_time = None

If not None, this sets the default auto-forward-mode timeout. If not None, then this is the time in seconds we should delay when showing 250 characters. 0 is special-cased to be infinite time, disabling auto-forward mode.

Persistent data must be deleted for this to take effect.

config.default_afm_enable = None

If not None, this should be a boolean that controls if auto-forward-mode is enabled by default. When it's False, auto-forwarding will not occur. Set this to False with caution, as the default Ren'Py UI does not provide a way of changing it's setting. (But one can use Preference action in a screen to create such a UI.)

Persistent data must be deleted for this to take effect.

config.default_fullscreen = None

This sets the default value of the fullscreen preference. This should be True or False. If None, this is ignored, allowing other code to set the default value. (It's usually set to False in options.rpy.)

config.default_text_cps = None

If not None, this sets the default number of characters per second to show. 0 is special cased to mean an infinite number of characters per second. (It's usually set to 0 in options.rpy.)

Persistent data must be deleted for this to take effect.

config.default_transform = ...

When a displayable is shown using the show or scene statements, the transform properties are taken from this transform and used to initialize the values of the displayable's transform.

The default default transform is center.

config.empty_window = ...

This is called when _window is True, and no window has been shown on the screen. (That is, no call to renpy.shown_window() has occured.) It's expected to show an empty window on the screen, and return without causing an interaction.

The default implementation of this uses the narrator character to display a blank line without interacting.

config.end_game_transition = None

The transition that is used to display the main menu after the game ends normally, either by invoking return with no place to return to, or by calling renpy.full_restart().

config.end_splash_transition = None

The transition that is used to display the main menu after the end of the splashscreen.

config.enter_sound = None

If not None, this is a sound file that is played when entering the game menu.

config.enter_transition = None

If not None, this variable should give a transition that will be used when entering the game menu.

config.exit_sound = None

If not None, this is a sound file that is played when exiting the game menu.

config.exit_transition = None

If not None, this variable should give a transition that will be performed when exiting the game menu.

config.font_replacement_map = { }

This is a map from (font, bold, italics) to (font, bold, italics), used to replace a font with one that's specialized as having bold and/or italics. For example, if you wanted to have everything using an italic version of "Vera.ttf" use "VeraIt.ttf" instead, you could write:

init python:
    config.font_replacement_map["Vera.ttf", False, True] = ("VeraIt.ttf", False, False).

Please note that these mappings only apply to specific variants of a font. In this case, requests for a bold italic version of vera will get a bold italic version of vera, rather than a bold version of the italic vera.

config.framerate = 100

If not None, this is the upper limit on the number of frames Ren'Py will attempt to display per second. This is only respected by the software renderer. The GL renderer will synchronize to vertical blank instead.

config.game_main_transition = None

The transition that is used to display the main menu after leaving the game menu. This is used when the load and preferences screens are invoked from the main menu, and it's also used when the user picks "Main Menu" from the game menu.

config.game_menu = [ ... ]

This is used to customize the choices on the game menu. Please read Main and Game Menus for more details on the contents of this variable.

This is not used when the game menu is defined using screens.

config.game_menu_music = None

If not None, a music file to play when at the game menu.

config.gl_test_image = "black"

The name of the image that is used when running the OpenGL performance test. This image will be shown for 5 frames or .25 seconds, on startup. It will then be automatically hidden.

config.has_autosave = True

If true, the game will autosave. If false, no autosaving will occur.

A function that is called with the argument to a hyperlink (the {a=...}{/a} text tag) when that hyperlink is clicked. The argument is a string.

This defaults to a function that,

  • If the argument begins with "http:", opens the argument in a web browser.
  • Otherwise, interprets the argument as a label, and calls that label in a new context.

If not None, a function that is called when a hyperlink gains or loses focus. When focus is gained, this function is called with a single argument, the argument of the hyperlink. When focus is lost, the function is called with None as its argument.

A function that is called to determine the style of hyperlinks. The function is called with a single argument, the argument of the hyperlink. It should return a style object, not a string.

config.image_cache_size = 8

This is used to set the size of the image cache, as a multiple of the screen size. This number is multiplied by the size of the screen, in pixels, to get the size of the image cache in pixels.

If set too large, this can waste memory. If set too small, images can be repeatedly loaded, hurting performance.

config.main_game_transition = None

The transition used when entering the game menu from the main menu, as is done when clicking "Load Game" or "Preferences".

config.main_menu = [ ... ]

The default main menu, when not using screens. For more details, see Main and Game Menus.

config.main_menu_music = None

If not None, a music file to play when at the main menu.

config.menu_clear_layers = []

A list of layer names (as strings) that are cleared when entering the game menu.

config.menu_window_subtitle = ""

The _window_subtitle variable is set to this value when entering the main or game menus.

config.missing_background = "black"

This is the background that is used when config.developer is True and an undefined image is used in a scene statement. This should be an image name (a string), not a displayable.

config.mode_callbacks = [ ... ]

A list of callbacks called when entering a mode. For more documentation, see the section on Modes.

The default value includes a callback that implements config.adv_nvl_transition and config.nvl_adv_transition.

config.mouse = None

This variable controls the use of user-defined mouse cursors. If None, the system mouse is used, which is usually a black-and-white mouse cursor.

Otherwise, this should be a dictionary giving the mouse animations for various mouse types. Keys used by the default library include "default", "say", "with", "menu", "prompt", "imagemap", "pause", "mainmenu", and "gamemenu". The "default" key should always be present, as it is used when a more specific key is absent.

Each value in the disctionary should be a list of (image, xoffset, offset) tuples, representing frames.

image
The mouse cursor image.
xoffset
The offset of the hotspot pixel from the left side of the cursor.
yoffset
The offset of the hotspot pixel from the top of the cursor.

The frames are played back at 20hz, and the animation loops after all frames have been shown.

config.narrator_menu = False

(This is set to True by the default screens.rpy file.) If true, then narration inside a menu is displayed using the narrator character. Otherwise, narration is displayed as captions within the menu itself.

config.nvl_adv_transition = None

A transition that is used when showing ADV-mode text directly after NVL-mode text.

config.overlay_functions = [ ]

A list of functions. When called, each function is expected to use ui functions to add displayables to the overlay layer.

config.quit_action = ...

The action that is called when the user clicks the quit button on a window. The default action prompts the user to see if he wants to quit the game.

config.thumbnail_height = 75

The height of the thumbnails that are taken when the game is saved. These thumbnails are shown when the game is loaded. Please note that the thumbnail is shown at the size it was taken at, rather than the value of this setting when the thumbnail is shown to the user.

When using a load_save layout, a different default may be used.

config.thumbnail_width = 100

The width of the thumbnails that are taken when the game is saved. These thumbnails are shown when the game is loaded. Please note that the thumbnail is shown at the size it was taken at, rather than the value of this setting when the thumbnail is shown to the user.

When using a load_save layout, a different default may be used.

config.window_hide_transition = None

The transition used by the window hide statement when no transition has been explicitly specified.

config.window_overlay_functions = []

A list of overlay functions that are only called when the window is shown.

config.window_show_transition = None

The transition used by the window show statement when no transition has been explicitly specified.

Rarely or Internally Used

config.afm_bonus = 25

The number of bonus characters added to every string when auto-forward mode is in effect.

config.afm_callback = None

If not None, a python function that is called to determine if it is safe to auto-forward. The intent is that this can be used by a voice system to disable auto-forwarding when a voice is playing.

config.afm_characters = 250

The number of characters in a string it takes to cause the amount of time specified in the auto forward mode preference to be delayed before auto-forward mode takes effect.

config.all_character_callbacks = [ ]

A list of callbacks that are called by all characters. This list is prepended to the list of character-specific callbacks.

config.allow_skipping = True

If set to False, the user is not able to skip over the text of the game.

config.archives = [ ]

A list of archive files that will be searched for images and other data. The entries in this should consist of strings giving the base names of archive files, without the .rpa extension.

This is automatically populated with all archive files in the game directory, so it is now rarely necessary to fill it out by hand.

config.auto_choice_delay = None

If not None,this variable gives a number of seconds that Ren'Py will pause at an in-game menu before picking a random choice from that menu. We'd expect this variable to always be set to None in released games, but setting it to a number will allow for automated demonstrations of games without much human interaction.

config.autosave_frequency = 200

Roughly, the number of interactions that will occur before an autosave occurs. To disable autosaving, set config.has_autosave to False, don't change this variable.

config.character_callback = None

The default value of the callback parameter of Character.

config.clear_layers = []

A list of names of layers to clear when entering the main and game menus.

config.context_clear_layers = [ 'screens' ]

A list of layers that are cleared when entering a new context.

config.editor = None

If not None, this is expected to be a command line for an editor that is invoked when the launch_editor (normally shift-E) key is pressed. The following substitutions make sense here:

%(filename)s

The filename of the most interesting file to be edited. This is the file that should be shown to the user.

%(line)d

The line number of the most interesting file to show to the user.

%(otherfiles)s

Other, less-interesting files to show to the user.

%(allfiles)s

All the files.

Filename, otherfiles, and allfiles have shell-relevant characters escaped with backslashes. otherfiles and allfiles separate files with config.editor_file_separator (by default '" "', a double-quote, a space, and a quote). Since all filenames should be enclosed in double-quotes, this means that otherfiles and allfiles will create several quoted files. If two double-quotes occur in a row the string, then they are both removed. (This allows an empty allfiles to be used.)

A reasonable example is:

init python:
    config.editor = 'myeditor "%(filename)s" +line:%(line)d "%(otherfiles)s"'

This defaults to the value of the RENPY_EDITOR environment variable. If not defined by that variable or user code, this is set automatically by the Ren'Py launcher.

config.editor_file_separator = '" "'

The separator used between filenames when lists of files are provided to the editor.

config.editor_transient = None

If not None, this is expected to be a command line for an editor that is invoked on transient files, such as lint results, parse errors, and tracebacks. Substitutions are as for config.editor.

This defaults to the value of the RENPY_EDITOR_TRANSIENT environment variable. If not defined by that variable or user code, this is set automatically by the Ren'Py launcher.

config.fade_music = 0.0

This is the amount of time in seconds to spend fading the old track out before a new music track starts. This should probably be fairly short, so the wrong music doesn't play for too long.

config.fast_skipping = False

Set this to True to allow fast skipping outside of developer mode.

config.file_open_callback = None

If not None, this is a function that is called with the file name when a file needs to be opened. It should return a file-like object, or None to load the file using the usual Ren'Py mechanisms. Your file-like object must implement at least the read, seek, tell, and close methods.

config.focus_crossrange_penalty = 1024

This is the amount of penalty to apply to moves perpendicular to the selected direction of motion, when moving focus with the keyboard.

config.gl_enable = True

Set this to False to disable OpenGL acceleration. OpenGL acceleration will automatically be disabled if it's determined that the system cannot support it, so it usually isn't necessary to set this.

OpenGL can also be disabled by holding down shift at startup.

config.hard_rollback_limit = 100

This is the number of steps that Ren'Py will let the user interactively rollback. Set this to 0 to disable rollback entirely, although we don't recommend that, as rollback is useful to let the user see text he skipped by mistake.

config.hide = renpy.hide

A function that is called when the hide statement is executed. This should take the same arguments as renpy.hide.

config.imagemap_auto_function = ...

A function that expands the auto property of a screen language imagebutton or imagemap statement into displayable. It takes the value of the auto property, and the desired image, one of: "insensitive", "idle", "hover", "selected_idle", "selected_hover", or "ground". It should return a displayable or None.

The default implementation formats the auto property with the desired image, and then checks if the computed filename exists.

config.imagemap_cache = True

If true, imagemap hotspots will be cached to PNG files, reducting time and memory usage, but increasing the size of the game on disk. Set this to false to disable this behavior.

config.implicit_with_none = True

If True, then by default the equivalent of a "with None" statement will be performed after interactions caused by dialogue, menus input, and imagemaps. This ensures that old screens will not show up in transitions.

config.interact_callbacks = ...

A list of functions that are called (without any arguments) when an interaction is started or restarted.

config.joystick = True

If True, joystic support is enabled.

config.keymap = dict(...)

This variable contains a keymap giving the keys and mouse buttons assigned to each possible operation. Please see the section on Keymaps for more information.

config.label_callback = None

If not None, this is a function that is called whenever a label is reached. It is called with two parameters. The first is the name of the label. The second is true if the label was reached through jumping, calling, or creating a new context, and false otherwise.

config.label_overrides = { }

This variable gives a way of causing jumps and calls of labels in Ren'Py code to be redirected to other labels. For example, if you add a mapping from "start" to "mystart", all jumps and calls to "start" will go to "mystart" instead.

config.layer_clipping = { }

Controls layer clipping. This is a map from layer names to (x, y, height, width) tuples, where x and y are the coordinates of the upper-left corner of the layer, with height and width giving the layer size.

If a layer is not mentioned in config.layer_clipping, then it is assumed to take up the full screen.

config.layers = [ 'master', 'transient', 'screens', 'overlay' ]

This variable gives a list of all of the layers that Ren'Py knows about, in the order that they will be displayed to the screen. (The lowest layer is the first entry in the list.) Ren'Py uses the layers "master", "transient", "screens", and "overlay" internally, so they should always be in this list.

config.lint_hooks = ...

This is a list of functions that are called, with no arguments, when lint is run. The functions are expected to check the script data for errors, and print any they find to standard output (using the python print statement is fine in this case).

config.load_before_transition = True

If True, the start of an interaction will be delayed until all images used by that interaction have loaded. (Yeah, it's a lousy name.)

config.log = None

If not None, this is expected to be a filename. Much of the text shown to the user by say or menu statements will be logged to this file.

config.missing_image_callback = None

If not None, this function is called when an attempt to load an image fails. It may return None, or it may return an image manipulator. If an image manipulator is returned, that image manipulator is loaded in the place of the missing image.

config.mouse_hide_time = 30

The mouse is hidden after this number of seconds has elapsed without any mouse input. This should be set to longer then the expected time it will take to read a single screen, so mouse users will not experience the mouse appearing then disappearing between clicks.

config.overlay_during_with = True

True if we want overlays to be shown during with statements, or False if we'd prefer that they be hidden during the with statements.

config.overlay_layers = [ 'overlay' ]

This is a list of all of the overlay layers. Overlay layers are cleared before the overlay functions are called. "overlay" should always be in this list.

config.periodic_callback = None

If not None, this should be a function. The function is called, with no arguments, at around 20hz.

config.predict_statements = 10

This is the number of statements, including the current one, to consider when doing predictive image loading. A breadth-first search from the current statement is performed until this number of statements is considered, and any image referenced in those statements is potentially predictively loaded. Setting this to 0 will disable predictive loading of images.

config.profile = False

If set to True, some profiling information will be output to stdout.

config.rollback_enabled = True

Should the user be allowed to rollback the game? If set to False, the user cannot interactively rollback.

config.rollback_length = 128

When there are more than this many statements in the rollback log, Ren'Py will consider trimming the log.

config.say_allow_dismiss = None

If not None, this should be a function. The function is called with no arguments when the user attempts to dismiss a say statement. If this function returns true, the dismissal is allowed, otherwise it is ignored.

config.say_menu_text_filter = None

If not None, then this is a function that is given the text found in strings in the say and menu statements. It is expected to return new (or the same) strings to replace them.

config.say_sustain_callbacks = ...

A list of functions that are called, without arguments, before the second and later interactions caused by a line of dialogue with pauses in it. Used to sustain voice through pauses.

config.savedir = ...

The complete path to the directory in which the game is saved. This should only be set in a python early block. See also config.save_directory, which generates the default value for this if it is not set during a python early block.

config.scene = renpy.scene

A function that's used in place of renpy.scene by the scene statement. Note that this is used to clear the screen, and config.show is used to show a new image. This should have the same signature as renpy.scene.

config.screenshot_callback = ...

A function that is called when a screenshot is taken. The function is called with a single parameter, the full filename the screenshot was saved as.

config.screenshot_crop = None

If not None, this should be a (x, y, height, width) tuple. Screenshots are cropped to this rectangle before being saved.

config.script_version = None

If not None, this is interpreted as a script version. The library will use this script version to enable some compatibility features, if necessary. If None, we assume this is a latest-version script.

This is normally set in a file added by the Ren'Py launcher when distributions are built.

config.searchpath = [ 'common', 'game' ]

A list of directories that are searched for images, music, archives, and other media, but not scripts. This is initialized to a list containing "common" and the name of the game directory.

config.show = renpy.show

A function that is used in place of renpy.show by the show and scene statements. This should have the same signature as renpy.show.

config.skip_delay = 75

The amount of time that dialogue will be shown for, when skipping statements using ctrl, in milliseconds. (Although it's nowhere near that precise in practice.)

config.skip_indicator = True

If True, the library will display a skip indicator when skipping through the script.

config.sound = True

If True, sound works. If False, the sound/mixer subsystem is completely disabled.

config.sound_sample_rate = 44100

The sample rate that the sound card will be run at. If all of your wav files are of a lower rate, changing this to that rate may make things more efficent.

config.start_interact_callbacks = ...

A list of functions that are called (without any arguments) when an interaction is started. These callbacks are not called when an interaction is restarted.

config.top_layers = [ ]

This is a list of names of layers that are displayed above all other layers, and do not participate in a transition that is applied to all layers. If a layer name is listed here, it should not be listed in config.layers.

config.transient_layers = [ 'transient' ]

This variable gives a list of all of the transient layers. Transient layers are layers that are cleared after each interaction. "transient" should always be in this list.

config.transform_uses_child_position = True

If True, transforms will inherit position properties from their child. If not, they won't.

config.variants = [ ... ]

A list of screen variants that are searched when choosing a screen to display to the user. This should always end with None, to ensure that the default screens are chosen. See Screen Variants.

config.with_callback = None

If not None, this should be a function that is called when a with statement occurs. This function can be responsible for putting up transient things on the screen during the transition. The function is called with a single argument, which is the transition that is occuring. It is expected to return a transition, which may or may not be the transition supplied as its argument.