Skip to content

Commit

Permalink
Merge pull request #83934 from KoBeWi/give_back_animations_to_animati…
Browse files Browse the repository at this point in the history
…on_editor

Fix animation track paths updated by scene dock
  • Loading branch information
akien-mga committed Oct 28, 2023
2 parents e7a25b2 + 294ce2d commit dc3a643
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 @@ -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);

Expand Down

0 comments on commit dc3a643

Please sign in to comment.