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

@ -105,6 +105,13 @@ namespace RhythmHeavenMania
new Param("valB", new EntityTypes.Float(0, 1, 0), "End Opacity"),
new Param("ease", EasingFunction.Ease.Linear, "Ease")
} ),
new GameAction("toggle inputs", delegate
{
GameManager.instance.ToggleInputs(eventCaller.currentEntity.toggle);
}, 0.5f, true, new List<Param>()
{
new Param("toggle", true, "Enable Inputs")
}),
}),
new Minigame("countIn", "Count-Ins", "", false, true, new List<GameAction>()
{