summaryrefslogtreecommitdiffstats
path: root/scene/animation
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2024-09-08 23:21:09 +0200
committerRémi Verschelde <rverschelde@gmail.com>2024-09-08 23:21:09 +0200
commit49b725ddcc72ba6a94f5ac8f0e72c562231d1755 (patch)
tree773b447c473dc458a990d08a058d8049a496925a /scene/animation
parent73a0f6e90f9703a5eaee5bda25fd1affc0d9cd53 (diff)
parent9dc231366d4c80affbee089b1a6e908455e3d1fd (diff)
downloadredot-engine-49b725ddcc72ba6a94f5ac8f0e72c562231d1755.tar.gz
Merge pull request #93353 from AThousandShips/config_warning_fix
Fix super call in various `get_configuration_warnings` methods
Diffstat (limited to 'scene/animation')
-rw-r--r--scene/animation/animation_tree.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/animation/animation_tree.cpp b/scene/animation/animation_tree.cpp
index 867bbda4b3..19080e61de 100644
--- a/scene/animation/animation_tree.cpp
+++ b/scene/animation/animation_tree.cpp
@@ -681,7 +681,7 @@ uint64_t AnimationTree::get_last_process_pass() const {
}
PackedStringArray AnimationTree::get_configuration_warnings() const {
- PackedStringArray warnings = Node::get_configuration_warnings();
+ PackedStringArray warnings = AnimationMixer::get_configuration_warnings();
if (!root_animation_node.is_valid()) {
warnings.push_back(RTR("No root AnimationNode for the graph is set."));
}