noAutoplay and autoplayOnly settings

Would be especially useful for menial optional inputs like the offbeat parts of flockstep
This commit is contained in:
Pengu123
2022-05-04 19:21:11 +02:00
parent 8911581873
commit f056b0d4b6
2 changed files with 25 additions and 15 deletions

View File

@ -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;