Sync playback to the actual beat count rather than relying on BPM #5

Open
ratijas wants to merge 43 commits from ratijas/muzika-gromche:work/r/beats into master
1 changed files with 3 additions and 3 deletions
Showing only changes of commit 2a33457661 - Show all commits

View File

@ -1740,14 +1740,14 @@ namespace MuzikaGromche
internal class JesterPatch
{
#if DEBUG
[HarmonyPatch("SetJesterInitialValues")]
[HarmonyPatch(nameof(JesterAI.SetJesterInitialValues))]
[HarmonyPostfix]
public static void AlmostInstantFollowTimerPostfix(JesterAI __instance)
{
__instance.beginCrankingTimer = 1f;
}
#endif
[HarmonyPatch("Update")]
[HarmonyPatch(nameof(JesterAI.Update))]
[HarmonyPrefix]
public static void DoNotStopTheMusicPrefix(JesterAI __instance, out State __state)
{
@ -1769,7 +1769,7 @@ namespace MuzikaGromche
}
}
[HarmonyPatch("Update")]
[HarmonyPatch(nameof(JesterAI.Update))]
[HarmonyPostfix]
public static void DoNotStopTheMusic(JesterAI __instance, State __state)
{