Skip to content

Commit

Permalink
Improve visibility rect/AABB generation usability in Particles
Browse files Browse the repository at this point in the history
- Don't display the time dialog if the automatically calculated
  generation time is short enough.
- Clarify the purpose of waiting in the progress dialog.
  • Loading branch information
Calinou committed Aug 23, 2022
1 parent cdced05 commit cf002d4
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 12 deletions.
15 changes: 9 additions & 6 deletions editor/plugins/particles_2d_editor_plugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -82,13 +82,16 @@ void Particles2DEditorPlugin::_selection_changed() {
void Particles2DEditorPlugin::_menu_callback(int p_idx) {
switch (p_idx) {
case MENU_GENERATE_VISIBILITY_RECT: {
float gen_time = particles->get_lifetime();
if (gen_time < 1.0) {
generate_seconds->set_value(1.0);
// Add one second to the default generation lifetime, since the progress is updated every second.
generate_seconds->set_value(MAX(1.0, trunc(particles->get_lifetime()) + 1.0));

if (generate_seconds->get_value() >= 11.0 + CMP_EPSILON) {
// Only pop up the time dialog if the particle's lifetime is long enough to warrant shortening it.
generate_visibility_rect->popup_centered_minsize();
} else {
generate_seconds->set_value(trunc(gen_time) + 1.0);
// Generate the visibility rect immediately.
_generate_visibility_rect();
}
generate_visibility_rect->popup_centered_minsize();
} break;
case MENU_LOAD_EMISSION_MASK: {
file->popup_centered_ratio();
Expand Down Expand Up @@ -126,7 +129,7 @@ void Particles2DEditorPlugin::_generate_visibility_rect() {

float running = 0.0;

EditorProgress ep("gen_vrect", TTR("Generating Visibility Rect"), int(time));
EditorProgress ep("gen_vrect", TTR("Generating Visibility Rect (Waiting for Particle Simulation)"), int(time));

bool was_emitting = particles->is_emitting();
if (!was_emitting) {
Expand Down
14 changes: 8 additions & 6 deletions editor/plugins/particles_editor_plugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -255,14 +255,16 @@ void ParticlesEditor::_notification(int p_notification) {
void ParticlesEditor::_menu_option(int p_option) {
switch (p_option) {
case MENU_OPTION_GENERATE_AABB: {
float gen_time = node->get_lifetime();
// Add one second to the default generation lifetime, since the progress is updated every second.
generate_seconds->set_value(MAX(1.0, trunc(node->get_lifetime()) + 1.0));

if (gen_time < 1.0) {
generate_seconds->set_value(1.0);
if (generate_seconds->get_value() >= 11.0 + CMP_EPSILON) {
// Only pop up the time dialog if the particle's lifetime is long enough to warrant shortening it.
generate_aabb->popup_centered_minsize();
} else {
generate_seconds->set_value(trunc(gen_time) + 1.0);
// Generate the visibility AABB immediately.
_generate_aabb();
}
generate_aabb->popup_centered_minsize();
} break;
case MENU_OPTION_CREATE_EMISSION_VOLUME_FROM_MESH: {
Ref<ParticlesMaterial> material = node->get_process_material();
Expand Down Expand Up @@ -313,7 +315,7 @@ void ParticlesEditor::_generate_aabb() {

float running = 0.0;

EditorProgress ep("gen_aabb", TTR("Generating AABB"), int(time));
EditorProgress ep("gen_aabb", TTR("Generating Visibility AABB (Waiting for Particle Simulation)"), int(time));

bool was_emitting = node->is_emitting();
if (!was_emitting) {
Expand Down

0 comments on commit cf002d4

Please sign in to comment.