Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

Gameframe

Custom window frame for GameMaker games · By YellowAfterlife

Full Screen also scaling down my other UI elements

A topic by Banddy created Mar 02, 2025 Views: 67 Replies: 2
Viewing posts 1 to 3

I got Gameframe and I noticed my other UI elements were scaled down when I put it in fullscreen just like when it does for Gamefame. Is there any way to fix this at all


windowed mode (looks as intended):



full screen mode (the ui elements are super tiny):

Developer

Gameframe calls display_set_gui_size to switch GUI size when it draws its stuff. It’s supposed to switch it back afterwards, but there’s no display_get_gui_size so it might be setting it to something other than what GM usually sets the GUI size too.

Call display_set_gui_size yourself and that should be fine.

ah thanks! didnt know that