From 5dd7cdec2be827054140a69d774c4358b1ccb37e Mon Sep 17 00:00:00 2001 From: minenice55 Date: Sat, 3 Sep 2022 23:26:19 -0400 Subject: [PATCH] loading: add extension filter for all supported formats --- Assets/Scripts/LevelEditor/Editor.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Assets/Scripts/LevelEditor/Editor.cs b/Assets/Scripts/LevelEditor/Editor.cs index 46ae9194c..5c3791633 100644 --- a/Assets/Scripts/LevelEditor/Editor.cs +++ b/Assets/Scripts/LevelEditor/Editor.cs @@ -417,8 +417,9 @@ namespace HeavenStudio.Editor { var extensions = new[] { - new ExtensionFilter("Heaven Studio Remix File", new string[] { "riq" }), - new ExtensionFilter("Legacy Heaven Studio Remix", new string[] { "tengoku", "rhmania" }) + new ExtensionFilter("All Supported Files ", new string[] { "riq", "tengoku", "rhmania" }), + new ExtensionFilter("Heaven Studio Remix File ", new string[] { "riq" }), + new ExtensionFilter("Legacy Heaven Studio Remix ", new string[] { "tengoku", "rhmania" }) }; StandaloneFileBrowser.OpenFilePanelAsync("Open Remix", "", extensions, false, (string[] paths) =>