namespace YooAsset { public struct DownloadReport { /// /// 下载进度(0f~1f) /// public float Progress; /// /// 需要下载的总字节数 /// public ulong TotalSize; /// /// 已经下载的字节数 /// public ulong DownloadedBytes; public static DownloadReport CreateDefaultReport() { DownloadReport report = new DownloadReport(); report.Progress = 0f; report.TotalSize = 0; report.DownloadedBytes = 0; return report; } } }