I mean, there no "correct" way to initialize window, in fact, you can call it whenever you want, after all, res.setMode is just wrapper for https://love2d.org/wiki/love.window.setMode, which would immediately call res.resize to update all internals.togFox wrote: ↑Thu Feb 01, 2024 9:18 am Is this the correct way to initial RS when I develop in 1920 x 1080 while allowing the user to resize to whatever they want?
The demo is 800 x 600 so just checking I got this bit right. Thanks.Code: Select all
res.conf({game_width = 1920, game_height = 1080, scale_mode = 1}) res.setMode(1920, 1080, {resizable=true})
I think you might got math somewhere wrong