Files
TEngine/UnityProject/Packages/YooAsset/Runtime/Extension/ExtensionClass/HandleBaseExtension.cs
Alex-Rachel 551727687f TEngine 6
2025-03-07 23:09:46 +08:00

12 lines
295 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using YooAsset;
public static class HandleBaseExtension
{
public static bool IsSucceed(this HandleBase thisHandle)
{
return thisHandle.IsDone && thisHandle.Status == EOperationStatus.Succeed;
}
}