using System.Collections; using System.Collections.Generic; using UnityEngine; public class FrameRateSetter : MonoBehaviour { private void Awake() { Application.targetFrameRate = 60; } }