Fix Sheets issue 11

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

View file

@ -240,9 +240,18 @@ namespace HeavenStudio.Games.Global
}
else if (idolShown)
{
IdolAnimator.Play("IdolHide", -1, 0);
IdolAnimator.speed = (1f / cond.pitchedSecPerBeat) * 0.5f;
idolShown = false;
if (prog < 1f)
{
IdolAnimator.Play("NoPose", -1, 0);
IdolAnimator.speed = 1;
idolShown = false;
}
else
{
IdolAnimator.Play("IdolHide", -1, 0);
IdolAnimator.speed = (1f / cond.pitchedSecPerBeat) * 0.5f;
idolShown = false;
}
}
}
}