Crop Stomp: Implementation progress

This commit is contained in:
Jenny Crowe
2022-02-28 23:38:38 -07:00
parent 6c13d0efa2
commit daf19fae54
12 changed files with 1524 additions and 3 deletions

View File

@ -38,14 +38,20 @@ namespace RhythmHeavenMania.Games.CropStomp
if (state.perfect)
{
game.Stomp();
game.bodyAnim.Play("Stomp", 0, 0);
nextStompBeat += 2f;
ResetState();
}
else if (state.notPerfect())
{
game.bodyAnim.Play("Crouch", 0, 0);
nextStompBeat += 2f;
ResetState();
}
else
{
game.bodyAnim.Play("Crouch", 0, 0);
}
}
}
}