Compare commits

...

2 Commits

Author SHA1 Message Date
luckisnow a81e3d77c0
Merge 84a336de2a into cdaa45e163 2024-11-08 10:56:09 +08:00
luran 84a336de2a FIX: fix add depend bundle tags bug 2024-09-29 17:40:20 +08:00
1 changed files with 11 additions and 8 deletions

View File

@ -180,15 +180,18 @@ namespace YooAsset.Editor
for (int index = 0; index < manifest.BundleList.Count; index++)
{
var packageBundle = manifest.BundleList[index];
if (_cacheBundleTags.TryGetValue(index, out var value))
foreach (var dependBundleID in packageBundle.DependIDs)
{
packageBundle.Tags = value.ToArray();
}
else
{
// 注意SBP构建管线会自动剔除一些冗余资源的引用关系导致游离资源包没有被任何主资源包引用。
string warning = BuildLogger.GetErrorMessage(ErrorCode.FoundStrayBundle, $"Found stray bundle ! Bundle ID : {index} Bundle name : {packageBundle.BundleName}");
BuildLogger.Warning(warning);
if (_cacheBundleTags.TryGetValue(dependBundleID, out var value))
{
packageBundle.Tags = value.ToArray();
}
else
{
// 注意SBP构建管线会自动剔除一些冗余资源的引用关系导致游离资源包没有被任何主资源包引用。
string warning = BuildLogger.GetErrorMessage(ErrorCode.FoundStrayBundle, $"Found stray bundle ! Bundle ID : {index} Bundle name : {packageBundle.BundleName}");
BuildLogger.Warning(warning);
}
}
}
}