让Unity在后台允许 孙鸿飞 | 2024-2-04 10:30 | 25 | 程序 89 字 | 1 分钟内 我们在Unity启动执行的时候,当鼠标点击非Game视图的界面时,Unity会自动暂停画面 可以通过代码使得Unity可以后台运行 代码如下,只需要在Start中执行一次即可 Application.runInBackground=true; 也可以通过Unity的编辑器中开启:Edit -> Project Setting C#Unity