mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2024-11-22 23:57:50 -05:00
persistentUpdate true main menu
This commit is contained in:
parent
dd3bc4ae21
commit
bd551092dc
1 changed files with 6 additions and 1 deletions
|
@ -54,7 +54,7 @@ class MainMenuState extends MusicBeatState
|
|||
|
||||
playMenuMusic();
|
||||
|
||||
persistentUpdate = false;
|
||||
persistentUpdate = true;
|
||||
persistentDraw = true;
|
||||
|
||||
var bg:FlxSprite = new FlxSprite(Paths.image('menuBG'));
|
||||
|
@ -103,6 +103,7 @@ class MainMenuState extends MusicBeatState
|
|||
// Freeplay has its own custom transition
|
||||
FlxTransitionableState.skipNextTransIn = true;
|
||||
FlxTransitionableState.skipNextTransOut = true;
|
||||
|
||||
openSubState(new FreeplayState());
|
||||
});
|
||||
|
||||
|
@ -274,6 +275,8 @@ class MainMenuState extends MusicBeatState
|
|||
public function openPrompt(prompt:Prompt, onClose:Void->Void):Void
|
||||
{
|
||||
menuItems.enabled = false;
|
||||
persistentUpdate = false;
|
||||
|
||||
prompt.closeCallback = function() {
|
||||
menuItems.enabled = true;
|
||||
if (onClose != null) onClose();
|
||||
|
@ -326,6 +329,8 @@ class MainMenuState extends MusicBeatState
|
|||
#if CHART_EDITOR_SUPPORTED
|
||||
if (controls.DEBUG_MENU)
|
||||
{
|
||||
persistentUpdate = false;
|
||||
|
||||
FlxG.state.openSubState(new DebugMenuSubState());
|
||||
}
|
||||
#end
|
||||
|
|
Loading…
Reference in a new issue