From a52291fcba4e3d1a9f2591daf1f23fe91dff3e38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Thu, 9 Jan 2025 12:53:12 +0100 Subject: [PATCH] LightmapGI: Fix another missing include to check for lightmapper_rd in editor --- editor/plugins/lightmap_gi_editor_plugin.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/editor/plugins/lightmap_gi_editor_plugin.cpp b/editor/plugins/lightmap_gi_editor_plugin.cpp index 024a4967072..61f7dd53838 100644 --- a/editor/plugins/lightmap_gi_editor_plugin.cpp +++ b/editor/plugins/lightmap_gi_editor_plugin.cpp @@ -34,6 +34,8 @@ #include "editor/editor_string_names.h" #include "editor/gui/editor_file_dialog.h" +#include "modules/modules_enabled.gen.h" // For lightmapper_rd. + void LightmapGIEditorPlugin::_bake_select_file(const String &p_file) { if (lightmap) { LightmapGI::BakeError err = LightmapGI::BAKE_ERROR_OK;