If you're using "letterbox" scalemode (aren't we all?) and want application:setFullScreen() to completely fill the screen when exporting to macOS, this is how you do it:
1. Open "Properties..." then "Graphics" and set the "Scale Mode:" dropdown to "No Scale - Top left".
2. Add this code early on in the game:
application:setFullScreen( true )
application:setScaleMode( "letterbox" ) |
This will ensure the app calculates the letterbox correctly, using the full screen area.
Comments