Added Checkbox Parameter + Toggle Inputs Event

So now you can disable inputs if you need to :)
This commit is contained in:
Carson Kompon
2022-03-01 02:27:49 -05:00
parent daf19fae54
commit 687f2b53f4
8 changed files with 42 additions and 8 deletions

View File

@ -358,7 +358,7 @@ namespace RhythmHeavenMania.Games.SpaceSoccer
private void CheckIfFall(float normalizedBeat)
{
if (normalizedBeat > Minigame.LateTime() && !GameManager.instance.autoplay)
if (normalizedBeat > Minigame.LateTime() && (!GameManager.instance.autoplay || !GameManager.instance.canInput))
{
Jukebox.PlayOneShotGame("spaceSoccer/missNeutral");
ball = null;