Is there any way to set the game window to scale full screen on Android ?
-
I would like to create a mobile game with vertical orientation, but was wondering how to properly scale content to full screen.
Is there any integrated setup in KorGE to do so ? -
You can set the orientation on gradle:
// build.gradle korge { orientation = Orientation.PORTRAIT fullscreen = true }
And on your fun main IIRC:
fun main() = Korge(fullscreen = true) { }