mirror of
https://github.com/RHeavenStudio/HeavenStudio.git
synced 2025-06-12 13:57:38 +02:00
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:
@ -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,
|
||||
|
Reference in New Issue
Block a user