using System.Collections; using System.Collections.Generic; using UnityEngine; using YooAsset; public static class AssetOperationHandleExtension { /// /// 等待异步执行完毕 /// public static AssetHandle WaitForAsyncOperationComplete(this AssetHandle thisHandle) { thisHandle.WaitForAsyncComplete(); return thisHandle; } }