// 유틸 : 저장경로 얻기 string GetOutputPath() { GUILayout.BeginVertical("Box"); GUILayout.Label("Select Output Path", EditorStyles.boldLabel); EditorGUILayout.HelpBox(m_strOutputPath, MessageType.None); if (true == GUILayout.Button("Defualt Output Path")) { m_strOutputPath = SHPath.GetPathToExportAssetBundle(); } if (true == GUILayout.Button("Change Output Path")) { string strChangePath = EditorUtility.OpenFolderPanel("Select Bundle Save Folder", "", ""); if (false == string.IsNullOrEmpty(strChangePath)) { m_strOutputPath = strChangePath; } } if (true == GUILayout.Button("Open Output Path")) { SHUtils.OpenInFileBrowser(m_strOutputPath); } GUILayout.EndVertical(); return(m_strOutputPath); }