namespace YooAsset { /// /// 加载 AssetBundle 的上下文信息 /// public struct LoadWebAssetBundleOptions { /// /// 资源包信息 /// internal PackageBundle Bundle { get; set; } /// /// 失败后重试次数 /// internal int FailedTryAgain { get; set; } /// /// 看门狗超时时间 /// internal int WatchdogTimeout { get; set; } /// /// 下载后台接口 /// internal IDownloadBackend DownloadBackend { get; set; } /// /// 禁用Unity的网络缓存 /// internal bool DisableUnityWebCache { get; set; } /// /// 主资源地址 /// internal string MainURL { get; set; } /// /// 备用资源地址 /// internal string FallbackURL { get; set; } } }