Merge pull request #164 from c0nd3v/master

Fixed AwaitForAllAssets()
This commit is contained in:
Yoshifumi Kawai
2020-09-12 06:09:29 +09:00
committed by GitHub

View File

@@ -46,6 +46,11 @@ namespace Cysharp.Threading.Tasks
this.continuationAction = null;
}
public AssetBundleRequestAllAssetsAwaiter GetAwaiter()
{
return this;
}
public bool IsCompleted => asyncOperation.isDone;
public UnityEngine.Object[] GetResult()