mirror of https://github.com/tuyoogame/YooAsset
commit
3046bbe697
|
@ -29,9 +29,8 @@ namespace YooAsset.Editor
|
||||||
if (GUILayout.Button("选择补丁包", GUILayout.MaxWidth(150)))
|
if (GUILayout.Button("选择补丁包", GUILayout.MaxWidth(150)))
|
||||||
{
|
{
|
||||||
string resultPath = EditorUtility.OpenFilePanel("Find", "Assets/", "bytes");
|
string resultPath = EditorUtility.OpenFilePanel("Find", "Assets/", "bytes");
|
||||||
if (string.IsNullOrEmpty(resultPath))
|
if (!string.IsNullOrEmpty(resultPath))
|
||||||
return;
|
_manifestPath = resultPath;
|
||||||
_manifestPath = resultPath;
|
|
||||||
}
|
}
|
||||||
EditorGUILayout.LabelField(_manifestPath);
|
EditorGUILayout.LabelField(_manifestPath);
|
||||||
EditorGUILayout.EndHorizontal();
|
EditorGUILayout.EndHorizontal();
|
||||||
|
|
Loading…
Reference in New Issue