From 85617b7b4eedfcd4ee6daa4415ab1f6ecad0213b Mon Sep 17 00:00:00 2001 From: Furo Date: Fri, 29 Nov 2024 15:27:24 +0100 Subject: [PATCH] Hide UI Debug State in release mode (#462) --- source/funkin/editors/EditorPicker.hx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/source/funkin/editors/EditorPicker.hx b/source/funkin/editors/EditorPicker.hx index 7056305f2..f210ba927 100644 --- a/source/funkin/editors/EditorPicker.hx +++ b/source/funkin/editors/EditorPicker.hx @@ -22,11 +22,13 @@ class EditorPicker extends MusicBeatSubstate { iconID: 2, state: null }, + #if debug { name: "UI Debug State", iconID: 3, state: UIDebugState }, + #end { name: "Debug Options", iconID: 4, @@ -214,4 +216,4 @@ class EditorPickerOption extends FlxTypedSpriteGroup { callback(); }); } -} \ No newline at end of file +}