Merge pull request #847 from RHeavenStudio/cherry-pick-release_1_patches-be289eb48c079f8b114e1fc0d157cc715d8f207b

Fix Operation Order Issue in Mr Upbeat
This commit is contained in:
minenice55 2024-04-09 02:56:17 +00:00 committed by GitHub
commit 214ca2f3e4
1 changed files with 11 additions and 7 deletions

View File

@ -254,14 +254,18 @@ namespace HeavenStudio.Games
man.RecursiveBlipping(startBlippingBeat);
startBlippingBeat = double.MaxValue;
}
}
}
if (metronomeBeat != double.MaxValue)
{
currentMetronomeDir = songPos >= metronomeBeat && songPos <= metronomeBeat + 1
? (stepIterate % 2 == 0) ? "Right" : "Left"
: (stepIterate % 2 == 1) ? "Right" : "Left";
metronomeAnim.DoScaledAnimation("MetronomeGo" + currentMetronomeDir, metronomeBeat, 1, clamp: true, ignoreSwing: false);
}
void LateUpdate()
{
if (conductor.isPlaying && !conductor.isPaused && metronomeBeat != double.MaxValue)
{
double songPos = conductor.songPositionInBeatsAsDouble;
currentMetronomeDir = songPos >= metronomeBeat && songPos <= metronomeBeat + 1
? (stepIterate % 2 == 0) ? "Right" : "Left"
: (stepIterate % 2 == 1) ? "Right" : "Left";
metronomeAnim.DoScaledAnimation("MetronomeGo" + currentMetronomeDir, metronomeBeat, 1, clamp: true, ignoreSwing: false);
}
}