-
-
Notifications
You must be signed in to change notification settings - Fork 850
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DOTween cancellation token not immediate #378
Comments
this is my workaround
|
Because of Performance (Register has allocations), it is not immediate. |
Another workaround; call
Looking forward to neat implementation. 👀 |
use the TweenCancelBehaviour? |
I see, thanks. I switched to the |
This issue is stale because it has been open 90 days with no activity. Remove stale label or comment or this will be closed in 7 days. |
mark |
I've noticed that whenever I wanted to cancel a tween immediately, I'd have to wait until the end of the frame for the tween to stop. Is it possible to kill the tween immediately, so my cancel logic can become synchronous instead of asynchronous?
Ex. (What I'm doing right now)
The text was updated successfully, but these errors were encountered: