Hi,
I’d like to have my app stay the same size and centered in the browser window. I can start it out that way on first load using this in build.settings:
window = { defaultMode = "normal", defaultViewWidth = 960, defaultViewHeight = 640, titleText = { default = "MyGame" } },
But as soon as I resize the window, the whole app scales to fill the browser window.
What settings do I need to put in to keep this from happening? Basically I want the size of the app to stay 960x640 and centered no matter how the browser window is resized.
-dev