11 lines
204 B
C#
11 lines
204 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class FrameRateSetter : MonoBehaviour
|
|
{
|
|
private void Awake() {
|
|
Application.targetFrameRate = 60;
|
|
}
|
|
}
|