Page 1 of 1

Preference menu overlapping

Posted: Fri Jun 21, 2019 7:59 pm
by AlexCLD
Hi everyone! I'm having a problem with preference menu. I'm trying to use imagemaps to change it from the default design but so far I haven't been able to figure out how to "hide" the navigation menu. Here's a picture of the problem:

https://i.gyazo.com/ac79aec43f23b453b23 ... abffaf.png

As you can see in the image posted above, what I'm trying to do is deleting completely the menu at the left. I would really appreciate your help, thanks!

Re: Preference menu overlapping

Posted: Fri Jun 21, 2019 9:28 pm
by Imperf3kt
The preferences menu is included within the game menu.
The navigation is included within that by the 'use navigation' line within game_menu
Removing this line will remove the navigation from every screen that uses the game_menu

You could add a python if and renpy.get_screen to determine if the preferences screen is showing and then not use the navigation screen.

So for example (untested, quickly written up, indentation might be wrong)

Code: Select all

    if not renpy.get_screen("preferences"):
        use navigation