diff --git a/scene/animation/animation_blend_tree.cpp b/scene/animation/animation_blend_tree.cpp index f61859c7e8ef..99e842f8be97 100644 --- a/scene/animation/animation_blend_tree.cpp +++ b/scene/animation/animation_blend_tree.cpp @@ -848,7 +848,7 @@ Ref AnimationNodeBlendTree::get_node(const StringName &p_name) co } StringName AnimationNodeBlendTree::get_node_name(const Ref &p_node) const { - for (Map::Element *E = nodes.front(); E; E = E->next()) { + for (NodeMap::Element *E = nodes.front(); E; E = E->next()) { if (E->get().node == p_node) { return E->key(); } @@ -870,12 +870,10 @@ Vector2 AnimationNodeBlendTree::get_node_position(const StringName &p_node) cons void AnimationNodeBlendTree::get_child_nodes(List *r_child_nodes) { Vector ns; - for (Map::Element *E = nodes.front(); E; E = E->next()) { + for (NodeMap::Element *E = nodes.front(); E; E = E->next()) { ns.push_back(E->key()); } - ns.sort_custom(); - for (int i = 0; i < ns.size(); i++) { ChildNode cn; cn.name = ns[i]; @@ -904,7 +902,7 @@ void AnimationNodeBlendTree::remove_node(const StringName &p_name) { nodes.erase(p_name); //erase connections to name - for (Map::Element *E = nodes.front(); E; E = E->next()) { + for (NodeMap::Element *E = nodes.front(); E; E = E->next()) { for (int i = 0; i < E->get().connections.size(); i++) { if (E->get().connections[i] == p_name) { E->get().connections.write[i] = StringName(); @@ -928,7 +926,7 @@ void AnimationNodeBlendTree::rename_node(const StringName &p_name, const StringN nodes.erase(p_name); //rename connections - for (Map::Element *E = nodes.front(); E; E = E->next()) { + for (NodeMap::Element *E = nodes.front(); E; E = E->next()) { for (int i = 0; i < E->get().connections.size(); i++) { if (E->get().connections[i] == p_name) { E->get().connections.write[i] = p_new_name; @@ -950,7 +948,7 @@ void AnimationNodeBlendTree::connect_node(const StringName &p_input_node, int p_ Ref input = nodes[p_input_node].node; ERR_FAIL_INDEX(p_input_index, nodes[p_input_node].connections.size()); - for (Map::Element *E = nodes.front(); E; E = E->next()) { + for (NodeMap::Element *E = nodes.front(); E; E = E->next()) { for (int i = 0; i < E->get().connections.size(); i++) { StringName output = E->get().connections[i]; ERR_FAIL_COND(output == p_output_node); @@ -994,7 +992,7 @@ AnimationNodeBlendTree::ConnectionError AnimationNodeBlendTree::can_connect_node return CONNECTION_ERROR_CONNECTION_EXISTS; } - for (Map::Element *E = nodes.front(); E; E = E->next()) { + for (NodeMap::Element *E = nodes.front(); E; E = E->next()) { for (int i = 0; i < E->get().connections.size(); i++) { StringName output = E->get().connections[i]; if (output == p_output_node) { @@ -1006,7 +1004,7 @@ AnimationNodeBlendTree::ConnectionError AnimationNodeBlendTree::can_connect_node } void AnimationNodeBlendTree::get_node_connections(List *r_connections) const { - for (Map::Element *E = nodes.front(); E; E = E->next()) { + for (NodeMap::Element *E = nodes.front(); E; E = E->next()) { for (int i = 0; i < E->get().connections.size(); i++) { StringName output = E->get().connections[i]; if (output != StringName()) { @@ -1030,7 +1028,7 @@ float AnimationNodeBlendTree::process(float p_time, bool p_seek) { } void AnimationNodeBlendTree::get_node_list(List *r_list) { - for (Map::Element *E = nodes.front(); E; E = E->next()) { + for (NodeMap::Element *E = nodes.front(); E; E = E->next()) { r_list->push_back(E->key()); } } @@ -1121,10 +1119,9 @@ bool AnimationNodeBlendTree::_get(const StringName &p_name, Variant &r_ret) cons } void AnimationNodeBlendTree::_get_property_list(List *p_list) const { List names; - for (Map::Element *E = nodes.front(); E; E = E->next()) { + for (NodeMap::Element *E = nodes.front(); E; E = E->next()) { names.push_back(E->key()); } - names.sort_custom(); for (List::Element *E = names.front(); E; E = E->next()) { String name = E->get(); diff --git a/scene/animation/animation_blend_tree.h b/scene/animation/animation_blend_tree.h index dc1e1cff2d2c..ead9e27d3881 100644 --- a/scene/animation/animation_blend_tree.h +++ b/scene/animation/animation_blend_tree.h @@ -339,7 +339,8 @@ class AnimationNodeBlendTree : public AnimationRootNode { Vector connections; }; - Map nodes; + typedef Map NodeMap; + NodeMap nodes; Vector2 graph_offset;