mirror of https://github.com/tuyoogame/YooAsset
parent
619b5dbdaf
commit
23931e5d58
|
@ -34,8 +34,7 @@ namespace YooAsset.Editor
|
||||||
public string GetMainBundleName(string packageName, bool uniqueBundleName)
|
public string GetMainBundleName(string packageName, bool uniqueBundleName)
|
||||||
{
|
{
|
||||||
string fullName;
|
string fullName;
|
||||||
string bundleName = EditorTools.GetRegularPath(_bundleName).Replace('/', '_').Replace('.', '_').ToLower();
|
string bundleName = EditorTools.GetRegularPath(_bundleName).Replace('/', '_').Replace('.', '_').Replace(" ", "_").ToLower();
|
||||||
bundleName = bundleName.Replace(" ", "_");
|
|
||||||
if (uniqueBundleName)
|
if (uniqueBundleName)
|
||||||
fullName = $"{packageName}_{bundleName}.{_bundleExtension}";
|
fullName = $"{packageName}_{bundleName}.{_bundleExtension}";
|
||||||
else
|
else
|
||||||
|
@ -53,7 +52,7 @@ namespace YooAsset.Editor
|
||||||
return string.Empty;
|
return string.Empty;
|
||||||
|
|
||||||
string fullName;
|
string fullName;
|
||||||
string bundleName = EditorTools.GetRegularPath(_bundleName).Replace('/', '_').Replace('.', '_').ToLower();
|
string bundleName = EditorTools.GetRegularPath(_bundleName).Replace('/', '_').Replace('.', '_').Replace(" ", "_").ToLower();
|
||||||
if (uniqueBundleName)
|
if (uniqueBundleName)
|
||||||
fullName = $"{packageName}_share_{bundleName}.{_bundleExtension}";
|
fullName = $"{packageName}_share_{bundleName}.{_bundleExtension}";
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in New Issue