summaryrefslogtreecommitdiffstats
path: root/editor/plugins/animation_tree_editor_plugin.cpp
diff options
context:
space:
mode:
authorkobewi <kobewi4e@gmail.com>2024-05-14 13:28:56 +0200
committerkobewi <kobewi4e@gmail.com>2024-05-30 12:03:43 +0200
commita345160ab348c93854779410f97248c30eb6a66f (patch)
treef7b3940af638d3b3e7cf6806e86df74d39f4d738 /editor/plugins/animation_tree_editor_plugin.cpp
parent60844997bb2981c44e3b4396ab2918df90f13c97 (diff)
downloadredot-engine-a345160ab348c93854779410f97248c30eb6a66f.tar.gz
Fix wrong usage of parameters_base_path StringName
Diffstat (limited to 'editor/plugins/animation_tree_editor_plugin.cpp')
-rw-r--r--editor/plugins/animation_tree_editor_plugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/animation_tree_editor_plugin.cpp b/editor/plugins/animation_tree_editor_plugin.cpp
index cc1f51348d..757d410b78 100644
--- a/editor/plugins/animation_tree_editor_plugin.cpp
+++ b/editor/plugins/animation_tree_editor_plugin.cpp
@@ -220,7 +220,7 @@ void AnimationTreeEditor::remove_plugin(AnimationTreeNodeEditorPlugin *p_editor)
}
String AnimationTreeEditor::get_base_path() {
- String path = SceneStringName(parameters_base_path);
+ String path = Animation::PARAMETERS_BASE_PATH;
for (int i = 0; i < edited_path.size(); i++) {
path += edited_path[i] + "/";
}