英文:
Unity doesn't Respond when clicked play button
问题
问题突然出现。
脚本中没有包含任何循环。
请帮忙,谢谢。
附注:(使用Mac Mini M1,Unity版本:2020.3.39f1)。
我已尝试重新启动Unity和Mac,但没有结果。
英文:
Unity stoped Responding when clicked play button.
Problem occurred from nowhere.
Scripts Doesn't Contain Any loops.
help pls, thanks.
ps. (using mac mini m1, unity version:2020.3.39f1).
I have Tried to restart unity and mac, but no results.
答案1
得分: -2
我已解决了这个问题。
问题出在一个带有无限循环的脚本上。
(如何找到那个脚本?)首先,我们必须找到包含该脚本的游戏对象。只需将所有游戏对象的活动状态都设置为false,然后在播放模式下逐个将它们设置为true,当Unity停止响应时,那就是我们的问题所在。
在脚本中找到while循环并解决代码。
英文:
There. I have solved this problem.
Problem was on a script with a loop going infinite.
(how to find that script?), we must first find game object that the script is in. simply set active all your game object false then in play mode set them active true one by one and then when your unity stops responding that's our problem.
find in script while and solve code.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论