版本: Unity 6 (6000.0)
语言英语
  • C#

Application.runInBackground

建议修改

成功!

感谢您帮助我们改进 Unity 文档的质量。虽然我们无法接受所有提交内容,但我们会阅读用户提出的每个建议修改,并在必要时进行更新。

关闭

提交失败

由于某些原因,您的建议修改无法提交。请<a>稍后再试</a>。感谢您抽出时间帮助我们改进 Unity 文档的质量。

关闭

取消

public static bool runInBackground;

描述

确定应用程序处于后台时,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; } }