summaryrefslogtreecommitdiffstats
path: root/scene/animation/animation_blend_tree.cpp
diff options
context:
space:
mode:
authorYuri Sizov <yuris@humnom.net>2023-07-21 17:15:42 +0200
committerYuri Sizov <yuris@humnom.net>2023-07-21 17:15:42 +0200
commit6a30f64dc82f734ef532fde77bf28e7761f106ad (patch)
tree72c748b1150fe9bdd38b12a42b0f2ae05ff37e80 /scene/animation/animation_blend_tree.cpp
parent4acb8c66a1eb2cde8a0b78cbdb38fe13de9beab1 (diff)
parenta3cdacdc4eaee6c322775ac4839c6829fc72cbb9 (diff)
downloadredot-engine-6a30f64dc82f734ef532fde77bf28e7761f106ad.tar.gz
Merge pull request #79595 from TokageItLab/rbmap-animblendtree
Make `AnimationNodeBlendTree` use `RBMap` insteads `HashMap`
Diffstat (limited to 'scene/animation/animation_blend_tree.cpp')
-rw-r--r--scene/animation/animation_blend_tree.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/scene/animation/animation_blend_tree.cpp b/scene/animation/animation_blend_tree.cpp
index 412017bc5a..3642f4e3e8 100644
--- a/scene/animation/animation_blend_tree.cpp
+++ b/scene/animation/animation_blend_tree.cpp
@@ -1178,8 +1178,6 @@ void AnimationNodeBlendTree::get_child_nodes(List<ChildNode> *r_child_nodes) {
ns.push_back(E.key);
}
- ns.sort_custom<StringName::AlphCompare>();
-
for (int i = 0; i < ns.size(); i++) {
ChildNode cn;
cn.name = ns[i];
@@ -1435,7 +1433,6 @@ void AnimationNodeBlendTree::_get_property_list(List<PropertyInfo> *p_list) cons
for (const KeyValue<StringName, Node> &E : nodes) {
names.push_back(E.key);
}
- names.sort_custom<StringName::AlphCompare>();
for (const StringName &E : names) {
String prop_name = E;