在游戏运行时,我们可以直接对ApplicationConfiguration进行更改吗?例如,我有SettingsScreen,当我按某个按钮切换到全屏时,它会立即生效。
答案 0 :(得分:1)
是的,你可以。
要在游戏运行时更改为全屏og更改窗口大小:
Gdx.graphics.setDisplayMode(int width, int height, boolean fullscreen)
[编辑]
sry,我记得旧版本。
现在是:
Gdx.graphics.setWindowedMode(int x, int y)
和
Gdx.graphics.setFullscreenMode(Gdx.graphics.getDisplayMode())