Merge pull request #85120 from dsnopek/gl-lightmap

OpenGL: Implement rendering of lightmaps
This commit is contained in:
Yuri Sizov 2023-12-08 15:23:27 +01:00
commit 44d544fc98
6 changed files with 350 additions and 27 deletions

View file

@ -1523,7 +1523,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("LightmapGI nodes are not supported when using the GL Compatibility backend yet. Support will be added in a future release."));
warnings.push_back(RTR("Lightmap cannot be baked when using the GL Compatibility backend yet. Support will be added in a future release."));
return warnings;
}