You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-10 13:00:37 +00:00
[Input] Add extra shortcut_input input processing step to process Unicode character input with Alt / Ctrl modifiers, after processing of shortcuts.
This commit is contained in:
@@ -6848,7 +6848,7 @@ void Node3DEditor::snap_selected_nodes_to_floor() {
|
||||
}
|
||||
}
|
||||
|
||||
void Node3DEditor::unhandled_key_input(const Ref<InputEvent> &p_event) {
|
||||
void Node3DEditor::shortcut_input(const Ref<InputEvent> &p_event) {
|
||||
ERR_FAIL_COND(p_event.is_null());
|
||||
|
||||
if (!is_visible_in_tree()) {
|
||||
@@ -7893,7 +7893,7 @@ Node3DEditor::Node3DEditor() {
|
||||
|
||||
selected = nullptr;
|
||||
|
||||
set_process_unhandled_key_input(true);
|
||||
set_process_shortcut_input(true);
|
||||
add_to_group("_spatial_editor_group");
|
||||
|
||||
EDITOR_DEF("editors/3d/manipulator_gizmo_size", 80);
|
||||
|
||||
Reference in New Issue
Block a user