Files
YooAsset/Assets/YooAsset/Runtime/FileSystem/Operation/Internal/DownloadAssetBundleOperation.cs
何冠峰 b90ab01fe9 update file system
下载器相关逻辑代码重构
2025-07-10 10:58:14 +08:00

22 lines
519 B
C#

using UnityEngine;
namespace YooAsset
{
internal abstract class DownloadAssetBundleOperation : AsyncOperationBase
{
/// <summary>
/// AssetBundle对象
/// </summary>
public AssetBundle Result;
/// <summary>
/// 下载进度
/// </summary>
public float DownloadProgress { protected set; get; } = 0;
/// <summary>
/// 下载大小
/// </summary>
public long DownloadedBytes { protected set; get; } = 0;
}
}