diff options
author | Thaddeus Crews <repiteo@outlook.com> | 2024-11-22 14:54:14 -0600 |
---|---|---|
committer | Thaddeus Crews <repiteo@outlook.com> | 2024-11-22 14:54:14 -0600 |
commit | f2763b23cf7c410ad5b679c5c0c32a9064d0b996 (patch) | |
tree | 67b6c7ef0e801e2511820e364dad7eb8e9c4ca91 /editor/plugins | |
parent | d6ad0f65d84489081d05dbe9e731e02e1a93be28 (diff) | |
parent | 5bca028e2bd5cde8a9a06fc1a4469cafa28d362b (diff) | |
download | redot-engine-f2763b23cf7c410ad5b679c5c0c32a9064d0b996.tar.gz |
Merge pull request #99483 from badsectoracula/cancel_lightmap_bake
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); |