using UnityEngine; /// /// Global startup settings. Scene geometry and materials are set directly in the Editor. /// public class GameSetup : MonoBehaviour { void Awake() { Application.runInBackground = true; Application.targetFrameRate = 60; } }