1
0
mirror of https://github.com/godotengine/godot.git synced 2026-01-03 19:11:41 +00:00

Fix error spam when tweened node leaves tree

This commit is contained in:
kobewi
2022-05-05 17:57:25 +02:00
parent 88a440826a
commit 45e4cb2bbf

View File

@@ -335,7 +335,7 @@ bool Tween::can_process(bool p_tree_paused) const {
if (is_bound && pause_mode == TWEEN_PAUSE_BOUND) {
Node *bound_node = get_bound_node();
if (bound_node) {
return bound_node->can_process();
return bound_node->is_inside_tree() && bound_node->can_process();
}
}