mirror of https://github.com/tuyoogame/YooAsset
parent
ef5e1e65f9
commit
ac0112199d
|
@ -257,7 +257,10 @@ namespace YooAsset.Editor
|
||||||
foreach (var patchBundle in patchManifest.BundleList)
|
foreach (var patchBundle in patchManifest.BundleList)
|
||||||
{
|
{
|
||||||
if (patchBundle.IsRawFile)
|
if (patchBundle.IsRawFile)
|
||||||
|
{
|
||||||
|
_cachedBundleDepends.Add(patchBundle.BundleName, new string[] { });
|
||||||
continue;
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
if (buildResultContext.Results.BundleInfos.ContainsKey(patchBundle.BundleName) == false)
|
if (buildResultContext.Results.BundleInfos.ContainsKey(patchBundle.BundleName) == false)
|
||||||
throw new Exception($"Not found bundle in SBP build results : {patchBundle.BundleName}");
|
throw new Exception($"Not found bundle in SBP build results : {patchBundle.BundleName}");
|
||||||
|
@ -297,6 +300,12 @@ namespace YooAsset.Editor
|
||||||
progressValue = 0;
|
progressValue = 0;
|
||||||
foreach (var patchBundle in patchManifest.BundleList)
|
foreach (var patchBundle in patchManifest.BundleList)
|
||||||
{
|
{
|
||||||
|
if (patchBundle.IsRawFile)
|
||||||
|
{
|
||||||
|
_cachedBundleDepends.Add(patchBundle.BundleName, new string[] { } );
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
var depends = buildResultContext.UnityManifest.GetDirectDependencies(patchBundle.BundleName);
|
var depends = buildResultContext.UnityManifest.GetDirectDependencies(patchBundle.BundleName);
|
||||||
_cachedBundleDepends.Add(patchBundle.BundleName, depends);
|
_cachedBundleDepends.Add(patchBundle.BundleName, depends);
|
||||||
EditorTools.DisplayProgressBar("缓存资源包依赖列表", ++progressValue, totalCount);
|
EditorTools.DisplayProgressBar("缓存资源包依赖列表", ++progressValue, totalCount);
|
||||||
|
|
Loading…
Reference in New Issue