在运行时设置应用程序配置

时间:2016-06-21 21:16:50

标签: libgdx

在游戏运行时,我们可以直接对ApplicationConfiguration进行更改吗?例如,我有SettingsScreen,当我按某个按钮切换到全屏时,它会立即生效。

1 个答案:

答案 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())