Fix super call in various get_configuration_warnings methods

This commit is contained in:
A Thousand Ships
2024-06-19 16:40:50 +02:00
parent b6223c0df0
commit 9dc231366d
34 changed files with 36 additions and 36 deletions

View File

@ -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."));
}