mirror of https://github.com/tuyoogame/YooAsset
Compare commits
2 Commits
338ae8c422
...
a81e3d77c0
Author | SHA1 | Date |
---|---|---|
luckisnow | a81e3d77c0 | |
luran | 84a336de2a |
|
@ -180,7 +180,9 @@ 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)
|
||||
{
|
||||
if (_cacheBundleTags.TryGetValue(dependBundleID, out var value))
|
||||
{
|
||||
packageBundle.Tags = value.ToArray();
|
||||
}
|
||||
|
@ -192,6 +194,7 @@ namespace YooAsset.Editor
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
private void CacheBundleTags(int bundleID, string[] assetTags)
|
||||
{
|
||||
if (_cacheBundleTags.ContainsKey(bundleID) == false)
|
||||
|
|
Loading…
Reference in New Issue