diff --git a/editor/scene_tree_dock.cpp b/editor/scene_tree_dock.cpp index 7968fdef5580..0b3fb9369df6 100644 --- a/editor/scene_tree_dock.cpp +++ b/editor/scene_tree_dock.cpp @@ -1729,6 +1729,11 @@ bool SceneTreeDock::_check_node_path_recursive(Node *p_root_node, Variant &r_var break; } + if (Object::cast_to(resource)) { + // Animation resources are handled by animation editor. + break; + } + List properties; resource->get_property_list(&properties);