Files
findthesource/Assets/Scripts/menu/FrameRateSetter.cs

11 lines
204 B
C#
Raw Normal View History

2023-03-14 16:44:25 +01:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class FrameRateSetter : MonoBehaviour
{
private void Awake() {
Application.targetFrameRate = 60;
}
}