I have a list of screen size.
Example:
800x600
1024x768
1280x960
…
1920x1080
How do I adjust the width and height of the game?
“windowMode” only “normal”, “minimized”, “maximized”, or “fullscreen”
Thanks
I have a list of screen size.
Example:
800x600
1024x768
1280x960
…
1920x1080
How do I adjust the width and height of the game?
“windowMode” only “normal”, “minimized”, “maximized”, or “fullscreen”
Thanks
Normal: Picks up the size from build.settings/config.lua, takes up only part of the screen.
Minimized: Uses no screen, but can be brought back from the doc or by other OS means of switching apps.
Maximized: Fills the screen, but any menu bars, minimize/maximize/close buttons still visible.
Fullscreen: any OS UI is hidden, your app completely fills the screen.
The base size of your app is determined by what you put in config.lua. You can constrain the minimum and maximum size that a “Normal” windows can be resized with settings in build.settings along with if it can be resized at all.
Rob
Yes,
Normal - this is only one fixed size from build.settings/config.lua
I want to change at any size from a list proposed by. 1024x768 -> 1280x960 -> 800x600 etc.
Thaks
You cannot change it via software after the fact.
Rob
I thought so.
Thanks
Normal: Picks up the size from build.settings/config.lua, takes up only part of the screen.
Minimized: Uses no screen, but can be brought back from the doc or by other OS means of switching apps.
Maximized: Fills the screen, but any menu bars, minimize/maximize/close buttons still visible.
Fullscreen: any OS UI is hidden, your app completely fills the screen.
The base size of your app is determined by what you put in config.lua. You can constrain the minimum and maximum size that a “Normal” windows can be resized with settings in build.settings along with if it can be resized at all.
Rob
Yes,
Normal - this is only one fixed size from build.settings/config.lua
I want to change at any size from a list proposed by. 1024x768 -> 1280x960 -> 800x600 etc.
Thaks
You cannot change it via software after the fact.
Rob
I thought so.
Thanks