Tweezers: Allowed inputting via arrow keys. Editor: Remix files now saved as .tengoku files (.rhmania files can still be opened via the editor).

This commit is contained in:
Jenny Crowe
2022-02-21 22:43:31 -07:00
parent 02b5d27feb
commit 081c08e47f
5 changed files with 42 additions and 12 deletions

View File

@ -39,7 +39,7 @@ namespace RhythmHeavenMania.Games.RhythmTweezers
stateBeat = Conductor.instance.GetPositionFromMargin(createBeat + game.tweezerBeatOffset + game.beatInterval, 1f);
StateCheck(stateBeat);
if (PlayerInput.Pressed())
if (PlayerInput.Pressed(true))
{
if (state.perfect)
{
@ -60,7 +60,7 @@ namespace RhythmHeavenMania.Games.RhythmTweezers
stateBeat = Conductor.instance.GetPositionFromMargin(createBeat + game.tweezerBeatOffset + game.beatInterval + 0.5f, 1f);
StateCheck(stateBeat);
if (PlayerInput.PressedUp())
if (PlayerInput.PressedUp(true))
{
// It's possible to release earlier than earlyTime,
// and the hair will automatically be released before lateTime,