Update patch system

pull/4/head
hevinci 2022-03-07 14:37:38 +08:00
parent 0c52a1e34a
commit 3d1c4fdc87
4 changed files with 2 additions and 28 deletions

View File

@ -63,6 +63,8 @@ namespace YooAsset
internal void SendRequest(int failedTryAgain, int timeout)
{
_failedTryAgain = failedTryAgain;
_timeout = timeout;
}
internal void Update()
{

View File

@ -24,14 +24,6 @@ namespace YooAsset
return 0;
}
/// <summary>
/// 获取内置资源标记列表
/// </summary>
public string[] GetManifestBuildinTags()
{
return new string[0];
}
#region IBundleServices接口
AssetBundleInfo IBundleServices.GetAssetBundleInfo(string bundleName)
{

View File

@ -52,16 +52,6 @@ namespace YooAsset
return LocalPatchManifest.ResourceVersion;
}
/// <summary>
/// 获取内置资源标记列表
/// </summary>
public string[] GetManifestBuildinTags()
{
if (LocalPatchManifest == null)
return new string[0];
return LocalPatchManifest.GetBuildinTags();
}
/// <summary>
/// 创建下载器
/// </summary>

View File

@ -28,16 +28,6 @@ namespace YooAsset
return AppPatchManifest.ResourceVersion;
}
/// <summary>
/// 获取内置资源标记列表
/// </summary>
public string[] GetManifestBuildinTags()
{
if (AppPatchManifest == null)
return new string[0];
return AppPatchManifest.GetBuildinTags();
}
#region IBundleServices接口
AssetBundleInfo IBundleServices.GetAssetBundleInfo(string bundleName)
{