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
No known key found for this signature in database
GPG key ID: 2033189A662F8BD7
34 changed files with 36 additions and 36 deletions

View file

@ -163,7 +163,7 @@ void Decal::_validate_property(PropertyInfo &p_property) const {
}
PackedStringArray Decal::get_configuration_warnings() const {
PackedStringArray warnings = Node::get_configuration_warnings();
PackedStringArray warnings = VisualInstance3D::get_configuration_warnings();
if (OS::get_singleton()->get_current_rendering_method() == "gl_compatibility") {
warnings.push_back(RTR("Decals are only available when using the Forward+ or Mobile rendering backends."));