ゲーム画面がバックグラウンドでも実行されるべきかを設定します。
デフォルトは false です。(アプリケーションがバックグラウンドにある場合は一時停止します)
PlayerSettings.virtualRealitySupported が有効の場合、 VRDeviceType.None を除くすべての VR デバイスに対し、強制的に true (アプリケーションがバックグラウンドにある場合は実行されます) にされます。
// Make the game run even when in background Application.runInBackground = true;
using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { void Example() { Application.runInBackground = true; } }