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 |
Beta Was this translation helpful? Give feedback.
-
UnityAsyncExtensions.GetAwaiter is disabled in Why is it enabled? |
Beta Was this translation helpful? Give feedback.
-
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:
Beta Was this translation helpful? Give feedback.
All reactions