mirror of
https://github.com/RHeavenStudioPlus/HeavenStudioPlus.git
synced 2024-11-10 03:35:10 +00:00
Fan Club: fix forcing idol anims during responses
This commit is contained in:
parent
d768f48eae
commit
04535747f7
1 changed files with 16 additions and 5 deletions
|
@ -49,6 +49,7 @@ namespace HeavenStudio.Games
|
|||
public GameEvent bop = new GameEvent();
|
||||
public GameEvent specBop = new GameEvent();
|
||||
public GameEvent noBop = new GameEvent();
|
||||
public GameEvent noResponse = new GameEvent();
|
||||
public GameEvent noSpecBop = new GameEvent();
|
||||
|
||||
private bool responseToggle = false;
|
||||
|
@ -176,6 +177,12 @@ namespace HeavenStudio.Games
|
|||
noBop.startBeat = beat;
|
||||
}
|
||||
|
||||
private void DisableResponse(float beat, float length)
|
||||
{
|
||||
noResponse.length = length;
|
||||
noResponse.startBeat = beat;
|
||||
}
|
||||
|
||||
private void DisableSpecBop(float beat, float length)
|
||||
{
|
||||
float bt = Conductor.instance.songPositionInBeats;
|
||||
|
@ -193,8 +200,8 @@ namespace HeavenStudio.Games
|
|||
|
||||
public void PlayAnim(float beat, float length, int type)
|
||||
{
|
||||
noBop.length = length;
|
||||
noBop.startBeat = beat;
|
||||
DisableResponse(beat, length);
|
||||
DisableBop(beat, length);
|
||||
|
||||
switch (type)
|
||||
{
|
||||
|
@ -239,16 +246,20 @@ namespace HeavenStudio.Games
|
|||
private void DoIdolClaps()
|
||||
{
|
||||
if (!responseToggle)
|
||||
{
|
||||
if (!(Conductor.instance.songPositionInBeats >= noResponse.startBeat && Conductor.instance.songPositionInBeats < noResponse.startBeat + noResponse.length))
|
||||
{
|
||||
idolAnimator.Play("IdolCrap", -1, 0);
|
||||
idolClapEffect.Play();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private void DoIdolResponse()
|
||||
{
|
||||
if (responseToggle)
|
||||
{
|
||||
if (!(Conductor.instance.songPositionInBeats >= noResponse.startBeat && Conductor.instance.songPositionInBeats < noResponse.startBeat + noResponse.length))
|
||||
idolAnimator.Play("IdolResponse", -1, 0);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue