Merge pull request #164 from c0nd3v/master

Fixed AwaitForAllAssets()
master
Yoshifumi Kawai 2020-09-12 06:09:29 +09:00 committed by GitHub
commit bef1bd8ad1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

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()