如果2个值高于3,我想退出游戏。我想在这里输入:
if(player.getWorldTranslation().y > 3){
if(player.getWorldTranslation().z > 3){
}
我想它在文档中,但在搜索10分钟后我仍然找不到任何答案。 谢谢你的帮助!
答案 0 :(得分:1)
我认为,最好的(如果你需要停止游戏而不是程序):
static Main app;//Put the app variable global and static
...
public static void main(String[] args) {
app = new Main();
app.start();
}
...
if(player.getWorldTranslation().y > 3){
if(player.getWorldTranslation().z > 3){
app.Stop(1);
//System.exit(1);//if you need close the entire program;
}
答案 1 :(得分:0)
Here's退出游戏的链接。您也可以使用System.exit(int)
。无论哪种方式都有效。