Skip to content

Commit

Permalink
Fix animation track paths updated by scene dock
Browse files Browse the repository at this point in the history
  • Loading branch information
KoBeWi committed Oct 25, 2023
1 parent 06d5189 commit 294ce2d
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions editor/scene_tree_dock.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1729,6 +1729,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);

Expand Down

0 comments on commit 294ce2d

Please sign in to comment.