Page 1 of 1

How to remove the SAVE menu?

Posted: Sun Nov 17, 2019 5:09 am
by KnuffelBeestje
When you pause the game, there's a save menu.
But, how do I remove it completely?

Thanks :)

Re: How to remove the SAVE menu?

Posted: Sun Nov 17, 2019 6:34 am
by Per K Grok
KnuffelBeestje wrote: Sun Nov 17, 2019 5:09 am When you pause the game, there's a save menu.
But, how do I remove it completely?

Thanks :)
There is, to the best of my knowledge not a specific Pause Mode in Ren'py (but I'm slightly behind in updating version, so if it is something recently added I would not know). But I don't see that there would really be a need for a special Pause Mode generally in a Ren'py game. You can always go to a game menu (such as Save Menu) which have the same effect as a Pause Mode. And generally you will have plenty of points where the game does not continue without some input from the player.

My best guess here is that you are talking about pressing right muse button, which will show the Save Menu. You can disable that function with

$ config.keymap['game_menu'].remove('mouseup_3')

but that will not give you a pause mode function.

If you want to remove the save menu completely you would need to disable all ways to open that screen.

Re: How to remove the SAVE menu?

Posted: Sun Nov 17, 2019 6:45 am
by Tayruu
If you want to remove the save slot elements from the "base" pause menu, that'll require working with screen language to make a new pause screen.
The same technically also for removing save/load from the menu options, but I'm assuming you want to move the save/load into their own screen, right?