SceneTreeTween warning

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

I’m using SceneTreeTween from c# to add an effect to a node that gets hit by a game explosion. However what can happen is, the node can sometimes be killed off by a 2nd game explosion causing QueueFree to be called before the tweener actually starts and I get a warning saying the node was freed before the tweening can start. How serious is this warning? Can I safely ignore it? I’ve tried binding the node, but I think since it gets freed before the tweening starts it has no effect. Since the freeing happens after the tween is created I can’t check if the node was “killed” or if the object is valid etc… before adding the tweener, and I see no way to clean up tweeners on a node when freeing it.