How to know what the tween node is still active on?

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

Is there a way to find out what tweens the tween node is still working on?

I have something the tween thinks its still working on, but I don’t know how to tell which property its still tweening. There are multiple tweens on the same node.

:bust_in_silhouette: Reply From: ATom 1

Signal

tween_started ( Object object, NodePath key )

Emitted when a tween starts.

tween_completed ( Object object, NodePath key )

Emitted when a tween ends.

Receive start and end signals, save the result to a bool value, or generate a boolean dictionary with the property path as the key

Thank you, I didn’t think about using those signals to keep track of what is active.

Dumuz | 2020-01-09 16:17