Fix Sheets issue 11

This commit is contained in:
minenice55 2022-06-08 21:26:28 -04:00
parent bd6f3ee23d
commit d1ded784cb

View file

@ -239,6 +239,14 @@ namespace HeavenStudio.Games.Global
return; return;
} }
else if (idolShown) else if (idolShown)
{
if (prog < 1f)
{
IdolAnimator.Play("NoPose", -1, 0);
IdolAnimator.speed = 1;
idolShown = false;
}
else
{ {
IdolAnimator.Play("IdolHide", -1, 0); IdolAnimator.Play("IdolHide", -1, 0);
IdolAnimator.speed = (1f / cond.pitchedSecPerBeat) * 0.5f; IdolAnimator.speed = (1f / cond.pitchedSecPerBeat) * 0.5f;
@ -246,6 +254,7 @@ namespace HeavenStudio.Games.Global
} }
} }
} }
}
private void UpdateClosedCaptionsDisplay() private void UpdateClosedCaptionsDisplay()
{ {