mirror of
https://github.com/RHeavenStudio/HeavenStudio.git
synced 2025-06-13 12:47:38 +02:00
noAutoplay and autoplayOnly settings
Would be especially useful for menial optional inputs like the offbeat parts of flockstep
This commit is contained in:
@ -77,9 +77,9 @@ namespace HeavenStudio.Games
|
||||
coin = ScheduleInput(beat, 6f, InputType.STANDARD_DOWN, CatchSuccess, CatchMiss, CatchEmpty);
|
||||
}
|
||||
|
||||
public void CatchSuccess(int state)
|
||||
public void CatchSuccess(float state)
|
||||
{
|
||||
if (state != 1)
|
||||
if (state != 0)
|
||||
{
|
||||
CatchMiss();
|
||||
return;
|
||||
|
Reference in New Issue
Block a user