renpy.list_saved_games
Function: renpy.list_saved_games( | regexp=r'.') |
This scans the savegames that we know about and returns information about them. It returns a list of tuples, where each tuple represents one savegame and consists of:
- The filename of the save.
- The extra_info that was passed to renpy.save.
- A displayable, the screenshot used to show the game.
- The time the game was saved at, seconds since 1/1/1970 UTC.
The regexp matches at the start of the filename, and filters the list.
Example
TODO