Files
TuanTuan-Engine/Assets/ThirdParty/YooAsset/2.3.17/Extension Sample/Runtime/ExtensionClass/HandleBaseExtension.cs

12 lines
295 B
C#
Raw Normal View History

2025-11-03 00:24:36 +08:00
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;
}
}