summaryrefslogtreecommitdiff
path: root/editor/editor_node.h
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <remi@verschelde.fr>2022-08-22 19:36:03 +0200
committerGitHub <noreply@github.com>2022-08-22 19:36:03 +0200
commit1fbf7b1ba5f8d498d199793fca179b9e3cd3c7bd (patch)
tree3751abec2cfd91bc902ef51f347a1c24cfe04428 /editor/editor_node.h
parent0cea7e3f64e3f22e15cca5e2ab71406bec6b8f5a (diff)
parenta3936adb2960c114d56842b8c124927bea56ae14 (diff)
Merge pull request #64610 from reduz/startup-benchmark-support
Diffstat (limited to 'editor/editor_node.h')
-rw-r--r--editor/editor_node.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/editor/editor_node.h b/editor/editor_node.h
index f7a102b4c7..a8f2ff9c67 100644
--- a/editor/editor_node.h
+++ b/editor/editor_node.h
@@ -682,6 +682,10 @@ private:
void _bottom_panel_switch(bool p_enable, int p_idx);
void _bottom_panel_raise_toggled(bool);
+ void _begin_first_scan();
+ bool use_startup_benchmark = false;
+ String startup_benchmark_file;
+
protected:
friend class FileSystemDock;
@@ -816,6 +820,7 @@ public:
void _copy_warning(const String &p_str);
+ void set_use_startup_benchmark(bool p_use_startup_benchmark, const String &p_startup_benchmark_file);
Error export_preset(const String &p_preset, const String &p_path, bool p_debug, bool p_pack_only);
Control *get_gui_base() { return gui_base; }