| 85 | } |
| 86 | |
| 87 | bool GodotREEditorStandalone::progress_task_step(const String &p_task, const String &p_state, int p_step, bool p_force_refresh) { |
| 88 | if (!singleton) { |
| 89 | return false; |
| 90 | // } else if (singleton->cmdline_export_mode) { |
| 91 | // print_line("\t" + p_task + ": step " + itos(p_step) + ": " + p_state); |
| 92 | // return false; |
| 93 | } else if (singleton->progress_dialog) { |
| 94 | return singleton->progress_dialog->task_step(p_task, p_state, p_step, p_force_refresh); |
| 95 | } else { |
| 96 | return false; |
| 97 | } |
| 98 | } |
| 99 | |
| 100 | void GodotREEditorStandalone::progress_end_task(const String &p_task) { |
| 101 | if (!singleton) { |