Merge pull request #94052 from m4gr3d/clean_input_dispatch_settings
Cleanup Android input on render thread settings
This commit is contained in:
commit
496fd12b17
17 changed files with 63 additions and 89 deletions
|
|
@ -6425,7 +6425,6 @@ EditorNode::EditorNode() {
|
|||
// No scripting by default if in editor (except for tool).
|
||||
ScriptServer::set_scripting_enabled(false);
|
||||
|
||||
Input::get_singleton()->set_use_accumulated_input(true);
|
||||
if (!DisplayServer::get_singleton()->is_touchscreen_available()) {
|
||||
// Only if no touchscreen ui hint, disable emulation just in case.
|
||||
Input::get_singleton()->set_emulate_touch_from_mouse(false);
|
||||
|
|
@ -6474,6 +6473,14 @@ EditorNode::EditorNode() {
|
|||
SurfaceUpgradeTool::get_singleton()->begin_upgrade();
|
||||
}
|
||||
|
||||
{
|
||||
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");
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue