Clappy trio input problem fixed

This commit is contained in:
Braedon
2022-02-05 15:28:04 -05:00
parent 245c88253d
commit 7f68ad28c2
3 changed files with 11 additions and 37 deletions

View File

@ -44,7 +44,7 @@ namespace RhythmHeavenMania.Games.DJSchool
{
Hold(true);
}
else if (state.notPerfect())
else
{
Hold(false);
}
@ -64,7 +64,7 @@ namespace RhythmHeavenMania.Games.DJSchool
{
Swipe();
}
else if (state.notPerfect())
else
{
UnHold();
}
@ -89,6 +89,8 @@ namespace RhythmHeavenMania.Games.DJSchool
public void UnHold()
{
isHolding = false;
anim.speed = -1;
anim.Play("Hold", 0, 0);