mirror of
https://github.com/MewoLab/AquaDX.git
synced 2026-02-05 13:57:27 +08:00
13 lines
231 B
C#
13 lines
231 B
C#
using UnityEngine;
|
|
|
|
namespace AquaMai.Fix;
|
|
|
|
public class FrameRateLock
|
|
{
|
|
public static void DoCustomPatch(HarmonyLib.Harmony h)
|
|
{
|
|
Application.targetFrameRate = 60;
|
|
QualitySettings.vSyncCount = 0;
|
|
}
|
|
}
|