Merge pull request #83934 from KoBeWi/give_back_animations_to_animation_editor

Fix animation track paths updated by scene dock
This commit is contained in:
Rémi Verschelde 2023-10-28 18:34:10 +02:00
commit dc3a643541
No known key found for this signature in database
GPG Key ID: C3336907360768E1

View File

@ -1758,6 +1758,11 @@ bool SceneTreeDock::_check_node_path_recursive(Node *p_root_node, Variant &r_var
break;
}
if (Object::cast_to<Animation>(resource)) {
// Animation resources are handled by animation editor.
break;
}
List<PropertyInfo> properties;
resource->get_property_list(&properties);