确定应用程序处于后台时,Player 是否应该运行
默认情况下,此属性设置为 false,应用程序处于后台时会暂停。
Android: 此属性仅在应用程序可见时才在 Android 上有效,在聚焦状态下无效。例如,当应用程序在多窗口模式下运行时,例如 Samsung Dex 和 Oculus Quest 2。如果应用程序在后台运行,无论Application.runInBackground
选项如何,它都会暂停。如果您想在后台执行任务,需要实现后台服务.
注意: 此属性在 iOS 上被忽略。
using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { void Example() { Application.runInBackground = true; } }