diff options
author | Bad Sector <badsector@runtimeterror.com> | 2024-11-22 21:10:07 +0200 |
---|---|---|
committer | Bad Sector <badsector@runtimeterror.com> | 2024-11-23 21:12:57 +0200 |
commit | da191168fe6cd69c6803c7db4804c1c17781409c (patch) | |
tree | ccb730553214c1e3dab256f377ccd93c25a83ff2 /editor | |
parent | 0c45ace151f25de2ca54fe7a46b6f077be32ba6f (diff) | |
download | redot-engine-da191168fe6cd69c6803c7db4804c1c17781409c.tar.gz |
Add VoxelGI bake cancelling and progress UI improvement
Diffstat (limited to 'editor')
-rw-r--r-- | editor/plugins/voxel_gi_editor_plugin.cpp | 10 | ||||
-rw-r--r-- | editor/plugins/voxel_gi_editor_plugin.h | 4 |
2 files changed, 7 insertions, 7 deletions
diff --git a/editor/plugins/voxel_gi_editor_plugin.cpp b/editor/plugins/voxel_gi_editor_plugin.cpp index 68fe013c08..527138e060 100644 --- a/editor/plugins/voxel_gi_editor_plugin.cpp +++ b/editor/plugins/voxel_gi_editor_plugin.cpp @@ -146,15 +146,15 @@ void VoxelGIEditorPlugin::make_visible(bool p_visible) { EditorProgress *VoxelGIEditorPlugin::tmp_progress = nullptr; -void VoxelGIEditorPlugin::bake_func_begin(int p_steps) { +void VoxelGIEditorPlugin::bake_func_begin() { ERR_FAIL_COND(tmp_progress != nullptr); - tmp_progress = memnew(EditorProgress("bake_gi", TTR("Bake VoxelGI"), p_steps)); + tmp_progress = memnew(EditorProgress("bake_gi", TTR("Bake VoxelGI"), 1000, true)); } -void VoxelGIEditorPlugin::bake_func_step(int p_step, const String &p_description) { - ERR_FAIL_NULL(tmp_progress); - tmp_progress->step(p_description, p_step, false); +bool VoxelGIEditorPlugin::bake_func_step(int p_progress, const String &p_description) { + ERR_FAIL_NULL_V(tmp_progress, false); + return tmp_progress->step(p_description, p_progress, false); } void VoxelGIEditorPlugin::bake_func_end() { diff --git a/editor/plugins/voxel_gi_editor_plugin.h b/editor/plugins/voxel_gi_editor_plugin.h index d09822dda6..01a2ab4bd1 100644 --- a/editor/plugins/voxel_gi_editor_plugin.h +++ b/editor/plugins/voxel_gi_editor_plugin.h @@ -50,8 +50,8 @@ class VoxelGIEditorPlugin : public EditorPlugin { EditorFileDialog *probe_file = nullptr; static EditorProgress *tmp_progress; - static void bake_func_begin(int p_steps); - static void bake_func_step(int p_step, const String &p_description); + static void bake_func_begin(); + static bool bake_func_step(int p_progress, const String &p_description); static void bake_func_end(); void _bake(); |