com.alicizax.unity.tuyoogam.../Samples~/Extension Sample/Runtime/ExtensionClass/HandleBaseExtension.cs
陈思海 01160cf00c init
2025-01-09 11:31:04 +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;
}
}