Cysharp/UniTask

Can't find how to use unitask with dotween

ebolefeysot opened this issue · 15 comments

Hi
First, thank you for developing this unitask library.
I'm using dotween and saw I can use await with dotween methods and 'AsUniTask()'.
I added UNITASK_DOTWEEN_SUPPORT symbol in unity (2021) as required, but it still complains about AsUniTask not defined.
I search for the extension source code, but can't find it anywhere.
Has it been removed ? If no, how to use it ?
Thanks for your help.

Did you also add a reference to the asmdef that wants to use the code? That's what tripped me up at first.

Its not AsUniTask() but ToUniTask().
Instead, you can await tween directly like this: (don't forget to add using Cysharp.Threading.Tasks;)

var tween = transform.DOMove(position, duration);
await tween;

yellowisher's comment seems to be the answer :)
Let me know if you have another problem.

Thanks for the suggestions, but it's not working, ToUniTask is not found and I get an error when awaiting the tween.
Version I used is 2.3.1

image

You have to add using Cysharp.Threading.Tasks; on the top of your script.

Yes, I did it, and vs will suggest it anyway.

Then I doubt the scripting symbol. Try adding #define UNITASK_DOTWEEN_SUPPORT directly on the top of your script.

I added the define, no changes...
I search for UNITASK_DOTWEEN_SUPPORT in solution and found it in script.csproj, probably added by unity.
Is there a file to look for in solution where the AsUniTask extension is defined ?

The file is found in packageCache. Code is greyed out as if the symbol was not defined. I commented the #if and code appears as usual, but I still get the errors. Maybe the source code is not used from this location...
This could solve the AsUniTask error, but what about the other one ?

I updated to latest version 2.3.3, but I still get the errors.

I checked the script.asmdef and references are there. To be sure it is refreshed, I switch to 'using plain text' for libraries in unity, and then back to 'using guid'.
I closed all and restarted my pc, but I still can't use the extensions.

Finally it's working !
I don't know exactly why, but I can point some actions I did:
I added unitask.dotween reference in the project. I had just added the main unitask library during installation. But it doesn't solve the problem.
Then I manually edited the scripts.asmdef file (see my comment above about guid).
I restart my pc (a pending windows update has been installed).
And today it works !
Hope it can help someone else...

I'm having a similar issue, specifically with DOTweenAsyncExtensions.cs. I've followed all the steps to import, reimported the specific plugins folders, reimported all, and still get errors in the file related to not being able to find the namespace "DG". My other team members are not having this issue, and on my primary PC I haven't encountered this at all. Does anyone have any suggestions on why this might occur or how to fix it?

You can add UNITASK_DOTWEEN_SUPPORT directly in the project settings symbols.
This fixed it for me.
Screenshot 2024-03-22 at 14 40 24

@ZhengYiHu Thanks, it is the solution for the issue.