diff options
author | Bad Sector <badsector@runtimeterror.com> | 2024-11-21 03:00:21 +0200 |
---|---|---|
committer | Bad Sector <badsector@runtimeterror.com> | 2024-11-21 21:31:02 +0200 |
commit | 5bca028e2bd5cde8a9a06fc1a4469cafa28d362b (patch) | |
tree | 746a80ea3d514ba711a0834de8d9df292d151162 /editor/plugins | |
parent | 9e6098432aac35bae42c9089a29ba2a80320d823 (diff) | |
download | redot-engine-5bca028e2bd5cde8a9a06fc1a4469cafa28d362b.tar.gz |
Add lightmap bake cancelling
Diffstat (limited to 'editor/plugins')
-rw-r--r-- | editor/plugins/lightmap_gi_editor_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/lightmap_gi_editor_plugin.cpp b/editor/plugins/lightmap_gi_editor_plugin.cpp index 4cff3504f5..3f21d5d11c 100644 --- a/editor/plugins/lightmap_gi_editor_plugin.cpp +++ b/editor/plugins/lightmap_gi_editor_plugin.cpp @@ -152,7 +152,7 @@ EditorProgress *LightmapGIEditorPlugin::tmp_progress = nullptr; bool LightmapGIEditorPlugin::bake_func_step(float p_progress, const String &p_description, void *, bool p_refresh) { if (!tmp_progress) { - tmp_progress = memnew(EditorProgress("bake_lightmaps", TTR("Bake Lightmaps"), 1000, false)); + tmp_progress = memnew(EditorProgress("bake_lightmaps", TTR("Bake Lightmaps"), 1000, true)); ERR_FAIL_NULL_V(tmp_progress, false); } return tmp_progress->step(p_description, p_progress * 1000, p_refresh); |