diff --git a/source/states/editors/DialogueCharacterEditorState.hx b/source/states/editors/DialogueCharacterEditorState.hx index ba4c67d..08c5937 100644 --- a/source/states/editors/DialogueCharacterEditorState.hx +++ b/source/states/editors/DialogueCharacterEditorState.hx @@ -68,6 +68,8 @@ class DialogueCharacterEditorState extends MusicBeatState FlxG.cameras.add(camHUD, false); FlxG.cameras.setDefaultDrawTarget(camGame, true); + FlxG.sound.playMusic(Paths.music('breakfast'), 0.5); + var grid:FlxBackdrop = new FlxBackdrop(FlxGridOverlay.createGrid(80, 80, 160, 160, true, 0x33FFFFFF, 0x0)); grid.velocity.set(40, 40); grid.alpha = 0; diff --git a/source/states/editors/DialogueEditorState.hx b/source/states/editors/DialogueEditorState.hx index fcc46c4..89d0d38 100644 --- a/source/states/editors/DialogueEditorState.hx +++ b/source/states/editors/DialogueEditorState.hx @@ -33,6 +33,8 @@ class DialogueEditorState extends MusicBeatState persistentUpdate = persistentDraw = true; FlxG.camera.bgColor = FlxColor.fromHSL(0, 0, 0.5); + FlxG.sound.playMusic(Paths.music('breakfast'), 0.5); + var grid:FlxBackdrop = new FlxBackdrop(FlxGridOverlay.createGrid(80, 80, 160, 160, true, 0x33FFFFFF, 0x0)); grid.velocity.set(40, 40); grid.alpha = 0; diff --git a/source/states/editors/MasterEditorMenu.hx b/source/states/editors/MasterEditorMenu.hx index 537b2d1..b6e8e39 100644 --- a/source/states/editors/MasterEditorMenu.hx +++ b/source/states/editors/MasterEditorMenu.hx @@ -173,11 +173,11 @@ class MasterEditorMenu extends MusicBeatState WeekData.setDirectoryFromWeek(); if(directories[curDirectory] == null || directories[curDirectory].length < 1) - directoryTxt.text = '< No Mod Directory Loaded >'; + directoryTxt.text = '< No Mod Loaded >'; else { Mods.currentModDirectory = directories[curDirectory]; - directoryTxt.text = '< Loaded Mod Directory: ' + Mods.currentModDirectory + ' >'; + directoryTxt.text = '< Mod: ' + Mods.currentModDirectory + ' >'; } directoryTxt.text = directoryTxt.text.toUpperCase(); } diff --git a/source/states/editors/MenuCharacterEditorState.hx b/source/states/editors/MenuCharacterEditorState.hx index 7b37304..7c913b6 100644 --- a/source/states/editors/MenuCharacterEditorState.hx +++ b/source/states/editors/MenuCharacterEditorState.hx @@ -43,7 +43,8 @@ class MenuCharacterEditorState extends MusicBeatState weekCharacterThing.alpha = 0.2; grpWeekCharacters.add(weekCharacterThing); } - + FlxG.sound.playMusic(Paths.music('breakfast'), 0.5); + add(new FlxSprite(0, 56).makeGraphic(FlxG.width, 386, 0xFFF9CF51)); add(grpWeekCharacters); diff --git a/source/states/editors/NoteSplashDebugState.hx b/source/states/editors/NoteSplashDebugState.hx index 799c6c0..f085acb 100644 --- a/source/states/editors/NoteSplashDebugState.hx +++ b/source/states/editors/NoteSplashDebugState.hx @@ -39,6 +39,8 @@ class NoteSplashDebugState extends MusicBeatState DiscordClient.changePresence("Note Splash Menu", null); #end + FlxG.sound.playMusic(Paths.music('breakfast'), 0.5); + notes = new FlxTypedGroup(); add(notes); diff --git a/source/states/editors/WeekEditorState.hx b/source/states/editors/WeekEditorState.hx index b6ef208..c220809 100644 --- a/source/states/editors/WeekEditorState.hx +++ b/source/states/editors/WeekEditorState.hx @@ -586,6 +586,8 @@ class WeekEditorFreeplayState extends MusicBeatState bg.color = FlxColor.WHITE; add(bg); + FlxG.sound.playMusic(Paths.music('breakfast'), 0.5); + var grid:FlxBackdrop = new FlxBackdrop(FlxGridOverlay.createGrid(80, 80, 160, 160, true, 0x33FFFFFF, 0x0)); grid.velocity.set(40, 40); grid.alpha = 0;