From 958e9d1fec4737ed3c3cb5779d81d428051c5e9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=A0=95=EC=98=81=EB=AF=BC?= <117150306+jym04@users.noreply.github.com> Date: Fri, 27 Jun 2025 12:40:46 +0900 Subject: [PATCH] =?UTF-8?q?=EC=83=88=20=ED=94=84=EB=A1=9C=EC=A0=9D?= =?UTF-8?q?=ED=8A=B8=20=EC=83=9D=EC=84=B1=20=EC=97=90=EB=9F=AC=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assets/Scripts/Studio/UI/Panel/Panel_NewProjectInfo.cs | 3 +++ Assets/Scripts/Studio/UI/Panel/Panel_TopMenuNewProjectInfo.cs | 3 +++ 2 files changed, 6 insertions(+) diff --git a/Assets/Scripts/Studio/UI/Panel/Panel_NewProjectInfo.cs b/Assets/Scripts/Studio/UI/Panel/Panel_NewProjectInfo.cs index 83dbf6a2..c9748abd 100644 --- a/Assets/Scripts/Studio/UI/Panel/Panel_NewProjectInfo.cs +++ b/Assets/Scripts/Studio/UI/Panel/Panel_NewProjectInfo.cs @@ -37,6 +37,9 @@ namespace Studio.UI { var paths = StandaloneFileBrowser.OpenFolderPanel("Select Folder", "", false); + if (paths == null) + return; + if (paths.Count > 0 && !string.IsNullOrEmpty(paths[0].Name)) { var path = Path.GetDirectoryName(paths[0].Name); diff --git a/Assets/Scripts/Studio/UI/Panel/Panel_TopMenuNewProjectInfo.cs b/Assets/Scripts/Studio/UI/Panel/Panel_TopMenuNewProjectInfo.cs index 3cf9d981..ea32f223 100644 --- a/Assets/Scripts/Studio/UI/Panel/Panel_TopMenuNewProjectInfo.cs +++ b/Assets/Scripts/Studio/UI/Panel/Panel_TopMenuNewProjectInfo.cs @@ -32,6 +32,9 @@ namespace Studio.UI { var paths = StandaloneFileBrowser.OpenFolderPanel("Select Folder", "", false); + if (paths == null) + return; + if (paths.Count > 0 && !string.IsNullOrEmpty(paths[0].Name)) { var path = Path.GetDirectoryName(paths[0].Name); -- 2.48.1.windows.1