Version: 2022.3
言語: 日本語
public static bool runInBackground ;

説明

Should the Player be running when the application is in the background?

Default is false (application pauses when it is in the background).

Note: This property is ignored on Android and iOS.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void Example() { Application.runInBackground = true; } }