From b17f0f593e136ca67e2de1e845d194069fa23318 Mon Sep 17 00:00:00 2001 From: Hakim Date: Fri, 7 Apr 2023 17:44:36 +0200 Subject: Use physical shortcuts for freelook navigation in the editor (cherry picked from commit 52de40310a9d98496aa3de5aaf457a7e60959b77) --- core/input/input_event.cpp | 9 +++++++-- core/input/input_event.h | 2 +- 2 files changed, 8 insertions(+), 3 deletions(-) (limited to 'core') diff --git a/core/input/input_event.cpp b/core/input/input_event.cpp index a6c1bb168c..9d5d84a508 100644 --- a/core/input/input_event.cpp +++ b/core/input/input_event.cpp @@ -474,10 +474,15 @@ String InputEventKey::to_string() { return vformat("InputEventKey: keycode=%s, mods=%s, physical=%s, pressed=%s, echo=%s", kc, mods, physical, p, e); } -Ref InputEventKey::create_reference(Key p_keycode) { +Ref InputEventKey::create_reference(Key p_keycode, bool p_physical) { Ref ie; ie.instantiate(); - ie->set_keycode(p_keycode & KeyModifierMask::CODE_MASK); + if (p_physical) { + ie->set_physical_keycode(p_keycode & KeyModifierMask::CODE_MASK); + } else { + ie->set_keycode(p_keycode & KeyModifierMask::CODE_MASK); + } + ie->set_unicode(char32_t(p_keycode & KeyModifierMask::CODE_MASK)); if ((p_keycode & KeyModifierMask::SHIFT) != Key::NONE) { diff --git a/core/input/input_event.h b/core/input/input_event.h index eff8d479db..4be42d0bd2 100644 --- a/core/input/input_event.h +++ b/core/input/input_event.h @@ -195,7 +195,7 @@ public: virtual String as_text() const override; virtual String to_string() override; - static Ref create_reference(Key p_keycode_with_modifier_masks); + static Ref create_reference(Key p_keycode_with_modifier_masks, bool p_physical = false); InputEventKey() {} }; -- cgit v1.2.3