Version: 5.4
public static bool runInBackground ;

説明

ゲーム画面がバックグラウンドでも実行されるべきかを設定します。

デフォルトは false です。(アプリケーションがバックグラウンドにある場合は一時停止します)

using UnityEngine;
using System.Collections;

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