MCPcopy Create free account
hub / github.com/Redot-Engine/redot-engine / _call_unhandled_key_input

Method _call_unhandled_key_input

scene/main/node.cpp:3622–3630  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3620}
3621
3622void Node::_call_unhandled_key_input(const Ref<InputEvent> &p_event) {
3623 if (p_event->get_device() != InputEvent::DEVICE_ID_INTERNAL) {
3624 GDVIRTUAL_CALL(_unhandled_key_input, p_event);
3625 }
3626 if (!is_inside_tree() || !get_viewport() || get_viewport()->is_input_handled()) {
3627 return;
3628 }
3629 unhandled_key_input(p_event);
3630}
3631
3632void Node::_call_unhandled_picking_input(const Ref<InputEvent> &p_event) {
3633 if (p_event->get_device() != InputEvent::DEVICE_ID_INTERNAL) {

Callers 1

_call_input_pauseMethod · 0.80

Calls 2

is_input_handledMethod · 0.80
get_deviceMethod · 0.45

Tested by

no test coverage detected