update operation system

新增字段PackageName
This commit is contained in:
何冠峰
2024-12-27 17:23:55 +08:00
parent 10750a0123
commit fe352ceb84
2 changed files with 13 additions and 6 deletions

View File

@@ -42,6 +42,17 @@ namespace YooAsset
/// </summary>
public float Progress { get; protected set; }
/// <summary>
/// 所属包裹名称
/// </summary>
public string PackageName
{
get
{
return _packageName;
}
}
/// <summary>
/// 是否已经完成
/// </summary>
@@ -98,10 +109,6 @@ namespace YooAsset
throw new System.NotImplementedException(this.GetType().Name);
}
internal string GetPackageName()
{
return _packageName;
}
internal void SetPackageName(string packageName)
{
_packageName = packageName;