Update asset system

This commit is contained in:
hevinci
2022-05-09 21:18:15 +08:00
parent bf0f479234
commit 79efe6237d
4 changed files with 30 additions and 5 deletions

View File

@@ -60,12 +60,28 @@ namespace YooAsset
// 2. 检测加载结果
if (Status == EStatus.Checking)
{
if (AssetObject != null)
{
if (UnityEditor.AssetDatabase.IsMainAsset(AssetObject) == false)
{
AssetObject = null;
Status = EStatus.Fail;
LastError = $"The loaded asset object is not main asset : {AssetPath} AssetType : {AssetType}";
YooLogger.Error(LastError);
InvokeCompletion();
return;
}
}
Status = AssetObject == null ? EStatus.Fail : EStatus.Success;
if (Status == EStatus.Fail)
{
LastError = $"Failed to load asset object : {AssetPath}";
if (AssetType == null)
LastError = $"Failed to load asset object : {AssetPath} AssetType : null";
else
LastError = $"Failed to load asset object : {AssetPath} AssetType : {AssetType}";
YooLogger.Error(LastError);
}
}
InvokeCompletion();
}
#endif