Multisound + Combo miss animation

This commit is contained in:
Braedon
2022-01-20 20:24:30 -05:00
parent f2c33e041e
commit 4be18d954c
29 changed files with 3624 additions and 197 deletions

View File

@ -65,6 +65,10 @@ namespace RhythmHeavenMania.Games.KarateMan
comboPotIndex++;
Jukebox.PlayOneShotGame("karateman/comboHit1");
}
else
{
Jukebox.PlayOneShotGame("karateman/swingNoHit");
}
comboIndex++;
anim.Play("PunchLeft", 0, 0);
}
@ -77,6 +81,10 @@ namespace RhythmHeavenMania.Games.KarateMan
comboPotIndex++;
Jukebox.PlayOneShotGame("karateman/comboHit1");
}
else
{
Jukebox.PlayOneShotGame("karateman/swingNoHit_Alt");
}
comboIndex++;
anim.Play("PunchRight", 0, 0);
}
@ -101,6 +109,10 @@ namespace RhythmHeavenMania.Games.KarateMan
comboPotIndex++;
Jukebox.PlayOneShotGame("karateman/comboHit3");
}
else
{
Jukebox.PlayOneShotGame("karateman/comboMiss");
}
comboIndex++;
anim.Play("ComboKick", 0, 0);
}
@ -128,7 +140,7 @@ namespace RhythmHeavenMania.Games.KarateMan
else
{
// fail anim
anim.Play("Idle");
anim.Play("ComboMiss");
ResetCombo();
}
}