Use physical keys for numpad emulation in the 3D editor

This makes numpad emulation work on non-QWERTY keyboard layouts
more reliably.
This commit is contained in:
Hugo Locurcio 2022-05-05 01:33:47 +02:00
parent 7774cbd8f2
commit aaf8424d7e
No known key found for this signature in database
GPG Key ID: 39E8F8BE30B0A49C

View File

@ -2042,7 +2042,7 @@ void SpatialEditorViewport::_sinput(const Ref<InputEvent> &p_event) {
}
if (EditorSettings::get_singleton()->get("editors/3d/navigation/emulate_numpad")) {
const uint32_t code = k->get_scancode();
const uint32_t code = k->get_physical_scancode();
if (code >= KEY_0 && code <= KEY_9) {
k->set_scancode(code - KEY_0 + KEY_KP_0);
}