Replies: 2 comments 5 replies
|
Warning From the UniTask Readme:
At first I used this and it seemed to work fine in editor and standalone windows builds. But when I tested in a UWP build (IL2CPP), the |
0 replies
|
UnityAsyncExtensions.GetAwaiter is disabled in Why is it enabled? |
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Hello everyone Faced with such a problem after upgrading to Unity3D 2023.1.0.b18:
error CS0121: The call is ambiguous between the following methods or properties: 'Cysharp.Threading.Tasks.UnityAsyncExtensions.GetAwaiter(UnityEngine.AsyncOperation)' and 'UnityEngine.AsyncOperationAwaitableExtensions.GetAwaiter(UnityEngine.AsyncOperation)'
My code:
await UnityEngine.SceneManagement.SceneManager.LoadSceneAsync(ID);``
I solved this problem in this way if anyone needs:
All reactions