Update Node::get_configuration_warnings signature

This commit is contained in:
RedMser 2023-07-05 15:41:44 +02:00
parent bf37a9bac6
commit d3852deaa4
132 changed files with 217 additions and 213 deletions

View file

@ -271,8 +271,8 @@ void ShaderGlobalsOverride::_notification(int p_what) {
}
}
PackedStringArray ShaderGlobalsOverride::get_configuration_warnings() const {
PackedStringArray warnings = Node::get_configuration_warnings();
Array ShaderGlobalsOverride::get_configuration_warnings() const {
Array warnings = Node::get_configuration_warnings();
if (!active) {
warnings.push_back(RTR("ShaderGlobalsOverride is not active because another node of the same type is in the scene."));