我正在创建塔防游戏,并且添加了编辑器模式。因此,基本上,我可以创建自己的地图。问题是,当我处于编辑器模式下并且要保存地图时,我必须退出游戏并重新启动它。否则,当我只按后按钮时,地图将不会在游戏模式下更新。 难道不存在要更新整个程序的东西吗?
private void updateButton() {
if(Mouse.isButtonDown(0)) {//If the mouse is down
if(menuUI.isButtonClicked("Back"))//If the boutton is down
StateManager.setState(GameState.MAINMENU); //Change State
}
}
这是我要用于按钮的代码。