Version: 2022.2
언어: 한국어
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; } }