smol fix
This commit is contained in:
parent
988e24f28f
commit
105cfafc1a
|
|
@ -268,6 +268,11 @@ namespace HeavenStudio.Games.Scripts_TotemClimb
|
||||||
bool canUnHold = true;
|
bool canUnHold = true;
|
||||||
while (normalizedBeat < 1f)
|
while (normalizedBeat < 1f)
|
||||||
{
|
{
|
||||||
|
if (_game.IsExpectingInputNow(Minigame.InputAction_FlickRelease) && PlayerInput.GetIsAction(Minigame.InputAction_FlickRelease))
|
||||||
|
{
|
||||||
|
yield break;
|
||||||
|
}
|
||||||
|
|
||||||
normalizedBeat = Conductor.instance.GetPositionFromBeat(beat, 1);
|
normalizedBeat = Conductor.instance.GetPositionFromBeat(beat, 1);
|
||||||
transform.position = dragonPoint.position;
|
transform.position = dragonPoint.position;
|
||||||
|
|
||||||
|
|
@ -286,12 +291,6 @@ namespace HeavenStudio.Games.Scripts_TotemClimb
|
||||||
_game.ScoreMiss();
|
_game.ScoreMiss();
|
||||||
canUnHold = true;
|
canUnHold = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (_game.IsExpectingInputNow(Minigame.InputAction_FlickRelease) && PlayerInput.GetIsAction(Minigame.InputAction_FlickRelease))
|
|
||||||
{
|
|
||||||
yield break;
|
|
||||||
}
|
|
||||||
|
|
||||||
yield return null;
|
yield return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue