mirror of https://github.com/hykilpikonna/AquaDX
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;
|
|||
|
}
|
|||
|
}
|