Setting Default Game Window Size?
Posted: Mon Dec 13, 2021 8:03 pm
Hello! I'm trying to figure out how to set the default game window size when you select "window" in the display preference menu.
I know by changing "window" to "all window" display will temporarily make any custom size the window size, but once you go fullscreen, or exit the game, it defaults back to it's small size. I'm having this issue for all Ren'py games, not just my own, which leads me to think it's somewhere in the Ren'py directory, but I'm lost on where I can change the preferences for this.
Edit: Sorry for the confusion, the problem is making the window display's default size the maximum size, as mine currently is not.
Code: Select all
if renpy.variant("pc") or renpy.variant("web"):
vbox:
style_prefix "radio"
label _("Display")
textbutton _("Window") action Preference("display", "window")
textbutton _("Fullscreen") action Preference("display", "fullscreen")Edit: Sorry for the confusion, the problem is making the window display's default size the maximum size, as mine currently is not.