Add GLES3 infrastructure for lightmap baking in the compatibility backend

This commit is contained in:
clayjohn
2024-01-19 12:39:26 -08:00
parent 4b6ad34988
commit efb1cbaad4
11 changed files with 533 additions and 86 deletions

View File

@@ -1532,7 +1532,7 @@ PackedStringArray LightmapGI::get_configuration_warnings() const {
PackedStringArray warnings = Node::get_configuration_warnings();
if (OS::get_singleton()->get_current_rendering_method() == "gl_compatibility") {
warnings.push_back(RTR("Lightmap cannot be baked when using the GL Compatibility backend yet. Support will be added in a future release."));
warnings.push_back(RTR("Lightmap can only be baked from a device that supports the RD backends. Lightmap baking may fail."));
return warnings;
}