code style

This commit is contained in:
何冠峰
2025-02-22 16:29:25 +08:00
parent 64e9734bbe
commit 400c2ccefe
87 changed files with 230 additions and 228 deletions

View File

@@ -16,11 +16,11 @@ namespace YooAsset
internal UnityWebTextRequestOperation(string url, int timeout = 60) : base(url, timeout)
{
}
internal override void InternalOnStart()
internal override void InternalStart()
{
_steps = ESteps.CreateRequest;
}
internal override void InternalOnUpdate()
internal override void InternalUpdate()
{
if (_steps == ESteps.None || _steps == ESteps.Done)
return;
@@ -59,7 +59,7 @@ namespace YooAsset
DisposeRequest();
}
}
internal override void InternalOnAbort()
internal override void InternalAbort()
{
_steps = ESteps.Done;
DisposeRequest();