This commit is contained in:
KadeDeveloper
2021-07-19 21:19:43 -07:00
7 changed files with 118 additions and 81 deletions

View File

@ -269,6 +269,8 @@ class PauseSubState extends MusicBeatSubstate
function changeSelection(change:Int = 0):Void
{
curSelected += change;
FlxG.sound.play(Paths.sound('scrollMenu'), 0.4);
if (curSelected < 0)
curSelected = menuItems.length - 1;
@ -292,4 +294,4 @@ class PauseSubState extends MusicBeatSubstate
}
}
}
}
}