summaryrefslogtreecommitdiffstats
path: root/scene/animation/animation_tree.cpp
diff options
context:
space:
mode:
authorRedMser <redmser.jj2@gmail.com>2023-07-05 15:41:44 +0200
committerRedMser <redmser.jj2@gmail.com>2024-02-08 23:05:20 +0100
commitd3852deaa450d77edb30df2bb1c77bd7bc45befc (patch)
treee25fb2b4795f3ffec816349a7080ef95f3406a24 /scene/animation/animation_tree.cpp
parentbf37a9bac6ebfb09c0a374260c35ede8373ce427 (diff)
downloadredot-engine-d3852deaa450d77edb30df2bb1c77bd7bc45befc.tar.gz
Update Node::get_configuration_warnings signature
Diffstat (limited to 'scene/animation/animation_tree.cpp')
-rw-r--r--scene/animation/animation_tree.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/scene/animation/animation_tree.cpp b/scene/animation/animation_tree.cpp
index 17fbc68973..b208d5af5b 100644
--- a/scene/animation/animation_tree.cpp
+++ b/scene/animation/animation_tree.cpp
@@ -606,8 +606,8 @@ uint64_t AnimationTree::get_last_process_pass() const {
return process_pass;
}
-PackedStringArray AnimationTree::get_configuration_warnings() const {
- PackedStringArray warnings = Node::get_configuration_warnings();
+Array AnimationTree::get_configuration_warnings() const {
+ Array warnings = Node::get_configuration_warnings();
if (!root_animation_node.is_valid()) {
warnings.push_back(RTR("No root AnimationNode for the graph is set."));
}