新增DISABLE_ONDEMAND_DOWNLOAD文件配置参数
This commit is contained in:
何冠峰
2025-07-22 18:59:47 +08:00
parent 5d7afff3e4
commit 33907ea967
3 changed files with 21 additions and 1 deletions

View File

@@ -75,6 +75,11 @@ namespace YooAsset
/// </summary>
public bool AppendFileExtension { private set; get; } = false;
/// <summary>
/// 自定义参数:禁用边玩边下机制
/// </summary>
public bool DisableOnDemandDownload { private set; get; } = false;
/// <summary>
/// 自定义参数:最大并发连接数
/// </summary>
@@ -222,6 +227,10 @@ namespace YooAsset
{
AppendFileExtension = Convert.ToBoolean(value);
}
else if (name == FileSystemParametersDefine.DISABLE_ONDEMAND_DOWNLOAD)
{
DisableOnDemandDownload = Convert.ToBoolean(value);
}
else if (name == FileSystemParametersDefine.DOWNLOAD_MAX_CONCURRENCY)
{
DownloadMaxConcurrency = Convert.ToInt32(value);