summaryrefslogtreecommitdiffstats
path: root/editor/project_manager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'editor/project_manager.cpp')
-rw-r--r--editor/project_manager.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/editor/project_manager.cpp b/editor/project_manager.cpp
index 52d7b14b65..59f45ef5db 100644
--- a/editor/project_manager.cpp
+++ b/editor/project_manager.cpp
@@ -1053,6 +1053,14 @@ ProjectManager::ProjectManager() {
}
EditorSettings::get_singleton()->set_optimize_save(false); // Just write settings as they come.
+ {
+ bool agile_input_event_flushing = EDITOR_GET("input/buffering/agile_event_flushing");
+ bool use_accumulated_input = EDITOR_GET("input/buffering/use_accumulated_input");
+
+ Input::get_singleton()->set_agile_input_event_flushing(agile_input_event_flushing);
+ Input::get_singleton()->set_use_accumulated_input(use_accumulated_input);
+ }
+
int display_scale = EDITOR_GET("interface/editor/display_scale");
switch (display_scale) {