refactor : 代码重构

This commit is contained in:
何冠峰
2026-03-09 17:58:49 +08:00
committed by 何冠峰
parent ba6db2ff4d
commit 8b35472991
363 changed files with 7210 additions and 4286 deletions

View File

@@ -23,19 +23,18 @@ namespace YooAsset
{
_error = error;
}
internal override void InternalStart()
protected override void InternalStart()
{
if (string.IsNullOrEmpty(_error))
{
Status = EOperationStatus.Succeeded;
SetResult();
}
else
{
Status = EOperationStatus.Failed;
Error = _error;
SetError(_error);
}
}
internal override void InternalUpdate()
protected override void InternalUpdate()
{
}
}