mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2025-11-28 15:26:12 +00:00
Merge pull request #507 from FunkinCrew/bugfix/wednesday-fixes
Bugfix/wednesday fixes
This commit is contained in:
commit
e72c2ed41b
|
|
@ -239,6 +239,10 @@
|
||||||
<haxedef name="FILE_DROP_SUPPORTED" />
|
<haxedef name="FILE_DROP_SUPPORTED" />
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
<!-- Enable this on platforms which do not support the edsior views. -->
|
||||||
|
<haxedef name="CHART_EDITOR_UNSUPPORTED" if="web" />
|
||||||
|
<haxedef name="CHART_EDITOR_SUPPORTED" unless="web"/>
|
||||||
|
|
||||||
<!-- Options for Polymod -->
|
<!-- Options for Polymod -->
|
||||||
<section if="polymod">
|
<section if="polymod">
|
||||||
<!-- Turns on additional debug logging. -->
|
<!-- Turns on additional debug logging. -->
|
||||||
|
|
|
||||||
2
assets
2
assets
|
|
@ -1 +1 @@
|
||||||
Subproject commit 0e07811217c579df376719c76d47c1e08b3070e2
|
Subproject commit 1d649965f5fcd4d2f83abea1f3f392b42fd0e270
|
||||||
|
|
@ -2529,6 +2529,7 @@ class PlayState extends MusicBeatSubState
|
||||||
if (FlxG.keys.justPressed.H) camHUD.visible = !camHUD.visible;
|
if (FlxG.keys.justPressed.H) camHUD.visible = !camHUD.visible;
|
||||||
#end
|
#end
|
||||||
|
|
||||||
|
#if CHART_EDITOR_SUPPORTED
|
||||||
// Open the stage editor overlaying the current state.
|
// Open the stage editor overlaying the current state.
|
||||||
if (controls.DEBUG_STAGE)
|
if (controls.DEBUG_STAGE)
|
||||||
{
|
{
|
||||||
|
|
@ -2548,6 +2549,7 @@ class PlayState extends MusicBeatSubState
|
||||||
targetSongId: currentSong.id,
|
targetSongId: currentSong.id,
|
||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
|
#end
|
||||||
|
|
||||||
#if (debug || FORCE_DEBUG_VERSION)
|
#if (debug || FORCE_DEBUG_VERSION)
|
||||||
// 1: End the song immediately.
|
// 1: End the song immediately.
|
||||||
|
|
|
||||||
|
|
@ -323,10 +323,12 @@ class MainMenuState extends MusicBeatState
|
||||||
}
|
}
|
||||||
|
|
||||||
// Open the debug menu, defaults to ` / ~
|
// Open the debug menu, defaults to ` / ~
|
||||||
|
#if CHART_EDITOR_SUPPORTED
|
||||||
if (controls.DEBUG_MENU)
|
if (controls.DEBUG_MENU)
|
||||||
{
|
{
|
||||||
FlxG.state.openSubState(new DebugMenuSubState());
|
FlxG.state.openSubState(new DebugMenuSubState());
|
||||||
}
|
}
|
||||||
|
#end
|
||||||
|
|
||||||
#if (debug || FORCE_DEBUG_VERSION)
|
#if (debug || FORCE_DEBUG_VERSION)
|
||||||
if (FlxG.keys.pressed.CONTROL && FlxG.keys.pressed.ALT && FlxG.keys.pressed.SHIFT && FlxG.keys.justPressed.W)
|
if (FlxG.keys.pressed.CONTROL && FlxG.keys.pressed.ALT && FlxG.keys.pressed.SHIFT && FlxG.keys.justPressed.W)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue