gpt4 book ai didi

java - 我怎样才能停止 jMonkeyEngine 游戏?

转载 作者:行者123 更新时间:2023-11-30 10:35:21 25 4
gpt4 key购买 nike

如果 2 个值大于 3,我想退出游戏。我想在这里输入:

        if(player.getWorldTranslation().y > 3){
if(player.getWorldTranslation().z > 3){

}

我猜它在文档中,但在搜索 10 分钟后我仍然找不到任何答案。感谢您的帮助!

最佳答案

我认为,最好的(如果你需要停止游戏而不是程序):

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;
}

关于java - 我怎样才能停止 jMonkeyEngine 游戏?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41211368/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com