mirror of https://github.com/tuyoogame/YooAsset
Fixed #54
parent
d67fc31c26
commit
f4a3fcece8
|
@ -90,7 +90,6 @@ namespace YooAsset
|
||||||
// 3. 检测加载结果
|
// 3. 检测加载结果
|
||||||
if (Status == EStatus.Checking)
|
if (Status == EStatus.Checking)
|
||||||
{
|
{
|
||||||
Progress = _cacheRequest.progress;
|
|
||||||
if (_cacheRequest != null)
|
if (_cacheRequest != null)
|
||||||
{
|
{
|
||||||
if (IsWaitForAsyncComplete)
|
if (IsWaitForAsyncComplete)
|
||||||
|
@ -101,6 +100,7 @@ namespace YooAsset
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
Progress = _cacheRequest.progress;
|
||||||
if (_cacheRequest.isDone == false)
|
if (_cacheRequest.isDone == false)
|
||||||
return;
|
return;
|
||||||
AssetObject = _cacheRequest.asset;
|
AssetObject = _cacheRequest.asset;
|
||||||
|
|
|
@ -79,7 +79,6 @@ namespace YooAsset
|
||||||
// 3. 检测加载结果
|
// 3. 检测加载结果
|
||||||
if (Status == EStatus.Checking)
|
if (Status == EStatus.Checking)
|
||||||
{
|
{
|
||||||
Progress = _cacheRequest.progress;
|
|
||||||
if (_cacheRequest != null)
|
if (_cacheRequest != null)
|
||||||
{
|
{
|
||||||
if (IsWaitForAsyncComplete)
|
if (IsWaitForAsyncComplete)
|
||||||
|
@ -90,6 +89,7 @@ namespace YooAsset
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
Progress = _cacheRequest.progress;
|
||||||
if (_cacheRequest.isDone == false)
|
if (_cacheRequest.isDone == false)
|
||||||
return;
|
return;
|
||||||
AllAssetObjects = _cacheRequest.allAssets;
|
AllAssetObjects = _cacheRequest.allAssets;
|
||||||
|
|
Loading…
Reference in New Issue