Update AssetBundleBuilder

pull/51/head
hevinci 2022-10-17 16:04:08 +08:00
parent 8b6cd759ef
commit 6116e49a05
2 changed files with 6 additions and 0 deletions

View File

@ -61,6 +61,11 @@ namespace YooAsset.Editor
/// </summary>
public string BuildPackage;
/// <summary>
/// 人类可读的版本信息
/// </summary>
public string HumanReadableVersion;
/// <summary>
/// 验证构建结果

View File

@ -31,6 +31,7 @@ namespace YooAsset.Editor
patchManifest.EnableAddressable = buildParameters.EnableAddressable;
patchManifest.OutputNameStyle = (int)buildParameters.OutputNameStyle;
patchManifest.PackageName = buildParameters.BuildPackage;
patchManifest.HumanReadableVersion = buildParameters.HumanReadableVersion;
patchManifest.BundleList = GetAllPatchBundle(context);
patchManifest.AssetList = GetAllPatchAsset(context, patchManifest);