Buggy timeline object resizing

This commit is contained in:
Braedon
2022-01-17 14:23:18 -05:00
parent 6a05f31506
commit 06ef8986c7
13 changed files with 798 additions and 158 deletions

View File

@ -162,15 +162,15 @@ namespace RhythmHeavenMania.Games.KarateMan
p.isEligible = false;
p.RemoveObject(currentHitInList);
}
else
{
Jukebox.PlayOneShotGame("karateman/swingNoHit");
}
if (punchLeft)
anim.Play("PunchLeft", 0, 0);
else
anim.Play("PunchRight", 0, 0);
}
if (!canHit)
Jukebox.PlayOneShotGame("karateman/swingNoHit");
if (punchLeft)
anim.Play("PunchLeft", 0, 0);
else
anim.Play("PunchRight", 0, 0);
}
public void HitEffectF(Vector3 pos)