mirror of
https://github.com/RHeavenStudioPlus/HeavenStudioPlus.git
synced 2024-11-10 03:35:10 +00:00
Fan Club: address issue with double clap -> I suppose stack
This commit is contained in:
parent
905c337c77
commit
d768f48eae
1 changed files with 11 additions and 2 deletions
|
@ -178,8 +178,17 @@ namespace HeavenStudio.Games
|
||||||
|
|
||||||
private void DisableSpecBop(float beat, float length)
|
private void DisableSpecBop(float beat, float length)
|
||||||
{
|
{
|
||||||
noSpecBop.length = length;
|
float bt = Conductor.instance.songPositionInBeats;
|
||||||
noSpecBop.startBeat = beat;
|
if (bt >= noSpecBop.startBeat && bt < noSpecBop.startBeat + noSpecBop.length)
|
||||||
|
{
|
||||||
|
float thisStToNextSt = beat - noSpecBop.startBeat;
|
||||||
|
noSpecBop.length = thisStToNextSt + length;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
noSpecBop.length = length;
|
||||||
|
noSpecBop.startBeat = beat;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void PlayAnim(float beat, float length, int type)
|
public void PlayAnim(float beat, float length, int type)
|
||||||
|
|
Loading…
Reference in a new issue