Update AssetBundleBuilder

This commit is contained in:
hevinci
2022-04-02 15:12:08 +08:00
parent b6c07cd956
commit 9de27e790d
16 changed files with 321 additions and 358 deletions

View File

@@ -25,19 +25,6 @@ namespace YooAsset.Editor
return $"{outputRoot}/{buildTarget}/{YooAssetSettingsData.Setting.UnityManifestFileName}";
}
/// <summary>
/// 制作AssetBundle的完整名称
/// 注意:名称为全部小写并且包含后缀名
/// </summary>
public static string MakeBundleName(string bundleLabel, string bundleVariant)
{
if (string.IsNullOrEmpty(bundleVariant))
return bundleLabel.ToLower();
else
return $"{bundleLabel}.{bundleVariant}".ToLower();
}
/// <summary>
/// 清空流文件夹
/// </summary>