mirror of https://github.com/tuyoogame/YooAsset
fix #361
parent
6a17335231
commit
3f027e5456
|
@ -29,9 +29,7 @@ namespace YooAsset
|
||||||
public DownloadStatus GetDownloadStatus()
|
public DownloadStatus GetDownloadStatus()
|
||||||
{
|
{
|
||||||
if (IsValidWithWarning == false)
|
if (IsValidWithWarning == false)
|
||||||
{
|
|
||||||
return DownloadStatus.CreateDefaultStatus();
|
return DownloadStatus.CreateDefaultStatus();
|
||||||
}
|
|
||||||
return Provider.GetDownloadStatus();
|
return Provider.GetDownloadStatus();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -44,7 +42,6 @@ namespace YooAsset
|
||||||
{
|
{
|
||||||
if (IsValidWithWarning == false)
|
if (IsValidWithWarning == false)
|
||||||
return EOperationStatus.None;
|
return EOperationStatus.None;
|
||||||
|
|
||||||
return Provider.Status;
|
return Provider.Status;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -83,7 +80,7 @@ namespace YooAsset
|
||||||
get
|
get
|
||||||
{
|
{
|
||||||
if (IsValidWithWarning == false)
|
if (IsValidWithWarning == false)
|
||||||
return false;
|
return true;
|
||||||
return Provider.IsDone;
|
return Provider.IsDone;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -141,7 +138,12 @@ namespace YooAsset
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public System.Threading.Tasks.Task Task
|
public System.Threading.Tasks.Task Task
|
||||||
{
|
{
|
||||||
get { return Provider.Task; }
|
get
|
||||||
|
{
|
||||||
|
if (IsValidWithWarning == false)
|
||||||
|
return null;
|
||||||
|
return Provider.Task;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// 协程相关
|
// 协程相关
|
||||||
|
|
Loading…
Reference in New Issue