You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to spawn 'TutorialMessageView' prefab via next code:
vargo=awaitassetReference.InstantiateAsync(parent).ToUniTask(cancellationToken:token);Debug.LogWarning($"Loaded {go.name}, Must be {typeof(T).Name}");
Before await:
After:
Result is wrong.
Native tasks work correctly:
varop=assetReference.InstantiateAsync(parent);vargo=awaitop.Task;token.ThrowIfCancellationRequested();Debug.LogWarning($"Loaded {go.name}, Must be {typeof(T).Name}");
The text was updated successfully, but these errors were encountered:
Since 2.5.0, there seems to be code that causes problems with pooling in the entire AsyncOperation, not just in Addressable.
I don't know if this is the cause, but I'd like to fix this bug soon.
Thank you.
I want to spawn 'TutorialMessageView' prefab via next code:
Before
await
:After:
Result is wrong.
Native tasks work correctly:
The text was updated successfully, but these errors were encountered: