Is there a way to reset a Tween node without it resetting the parameters it was animating?

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By Dumuz

I’ve tried tween.stop(), but it seems like it’s more of a pause. Keeping all of the parameters it was animating.
When I try tween.reset(), it puts my mesh back where it was before the tween started.

I want to stop, clear the tween so I can use it again. Hope this makes sense.

Thank you!

:bust_in_silhouette: Reply From: Tubix

If anyone else is still having this problem, I solved it using the tween.remove() function instead of tween.stop().