update download system

pull/189/head
hevinci 2023-09-27 16:31:24 +08:00
parent 45dbe2a0e6
commit 6877900ac2
1 changed files with 5 additions and 2 deletions

View File

@ -19,7 +19,7 @@ namespace YooAsset
} }
private ESteps _steps = ESteps.None; private ESteps _steps = ESteps.None;
private bool _getAssetBundle; private bool _getAssetBundle = false;
public WebDownloader(BundleInfo bundleInfo, System.Type requesterType, int failedTryAgain, int timeout) : base(bundleInfo, requesterType, failedTryAgain, timeout) public WebDownloader(BundleInfo bundleInfo, System.Type requesterType, int failedTryAgain, int timeout) : base(bundleInfo, requesterType, failedTryAgain, timeout)
{ {
@ -28,7 +28,10 @@ namespace YooAsset
{ {
if (_steps == ESteps.None) if (_steps == ESteps.None)
{ {
_getAssetBundle = (bool)args[0]; if (args.Length > 0)
{
_getAssetBundle = (bool)args[0];
}
_steps = ESteps.PrepareDownload; _steps = ESteps.PrepareDownload;
} }
} }