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