Files
2026-02-21 16:46:09 -08:00

15 lines
310 B
C#

using UnityEngine;
namespace LeTai.Asset.TranslucentImage.Demo
{
public class UnrestrictFramerate : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
// Debug.Log(Application.targetFrameRate.ToString());
Application.targetFrameRate = 120;
}
}
}