fixed tap trial bug
This commit is contained in:
parent
d35e57249e
commit
09dc90150f
|
|
@ -443,14 +443,14 @@ namespace HeavenStudio.Games
|
||||||
private void MissJump(PlayerActionEvent caller)
|
private void MissJump(PlayerActionEvent caller)
|
||||||
{
|
{
|
||||||
player.JumpTapMiss(false);
|
player.JumpTapMiss(false);
|
||||||
if (giraffe.IsAnimationNotPlaying()) giraffe.DoScaledAnimationAsync("Miss", 0.5f);
|
if (giraffe.IsAnimationNotPlaying() && currentAnim != GiraffeAnimation.Exit) giraffe.DoScaledAnimationAsync("Miss", 0.5f);
|
||||||
ResetScroll();
|
ResetScroll();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void MissJumpFinal(PlayerActionEvent caller)
|
private void MissJumpFinal(PlayerActionEvent caller)
|
||||||
{
|
{
|
||||||
player.JumpTapMiss(true);
|
player.JumpTapMiss(true);
|
||||||
if (giraffe.IsAnimationNotPlaying()) giraffe.DoScaledAnimationAsync("Miss", 0.5f);
|
if (giraffe.IsAnimationNotPlaying() && currentAnim != GiraffeAnimation.Exit) giraffe.DoScaledAnimationAsync("Miss", 0.5f);
|
||||||
ResetScroll();
|
ResetScroll();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue