Added Mr. Upbeat fall animation

This commit is contained in:
Carson Kompon
2022-03-06 12:34:54 -05:00
parent 6bc221d185
commit bc9bac4ab5
5 changed files with 522 additions and 54 deletions

View File

@ -29,7 +29,10 @@ namespace RhythmHeavenMania.Games.MrUpbeat
if(game.canGo && normalizedBeat > Minigame.LateTime())
{
//Fall();
if ((game.beatCount % 2 == 0 && stepTimes % 2 == 0) || (game.beatCount % 2 == 1 && stepTimes % 2 == 1))
{
Fall();
}
targetBeat += 100f;
return;
}