pull/150/head
hevinci 2023-08-18 17:40:55 +08:00
parent 44cb4168cf
commit b4f0d6bab8
1 changed files with 5 additions and 3 deletions

View File

@ -340,11 +340,13 @@ namespace YooAsset.Editor
List<string> result = new List<string>(depends.Length);
foreach (string assetPath in depends)
{
// 注意:排除主资源对象
if (assetPath == mainAssetPath)
continue;
if (IsValidateAsset(assetPath, false))
{
// 注意:排除主资源对象
if (assetPath != mainAssetPath)
result.Add(assetPath);
result.Add(assetPath);
}
}
return result;