| 3600 | } |
| 3601 | |
| 3602 | void Node::_call_shortcut_input(const Ref<InputEvent> &p_event) { |
| 3603 | if (p_event->get_device() != InputEvent::DEVICE_ID_INTERNAL) { |
| 3604 | GDVIRTUAL_CALL(_shortcut_input, p_event); |
| 3605 | } |
| 3606 | if (!is_inside_tree() || !get_viewport() || get_viewport()->is_input_handled()) { |
| 3607 | return; |
| 3608 | } |
| 3609 | shortcut_input(p_event); |
| 3610 | } |
| 3611 | |
| 3612 | void Node::_call_unhandled_input(const Ref<InputEvent> &p_event) { |
| 3613 | if (p_event->get_device() != InputEvent::DEVICE_ID_INTERNAL) { |
no test coverage detected