Some tempo changes improvements

This commit is contained in:
Braedon
2022-01-28 21:26:34 -05:00
parent 5da4ceae07
commit af24468f25
9 changed files with 297 additions and 51 deletions

View File

@ -38,7 +38,7 @@ namespace RhythmHeavenMania.Editor
public void Undo()
{
if (!canUndo()) return;
if (!canUndo() || Conductor.instance.NotStopped()) return;
if (historyStack.Count > 0)
{
@ -49,7 +49,7 @@ namespace RhythmHeavenMania.Editor
public void Redo()
{
if (!canRedo()) return;
if (!canRedo() || Conductor.instance.NotStopped()) return;
if (redoHistoryStack.Count > 0)
{