From 3204befd1eb42cc87ae296148e1361a8b001d08d Mon Sep 17 00:00:00 2001 From: Andreas Haas Date: Fri, 26 May 2017 21:14:59 +0200 Subject: Fix InputEvent actions. The `InputEvent::is_action(pressed|released)` methods weren't implemented yet. Also fixed a typo in `InputDefault` that prevented `Input.is_action(pressed|released)` from working. --- core/os/input_event.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'core') diff --git a/core/os/input_event.cpp b/core/os/input_event.cpp index cf3b8f74ec..7ec76c1eed 100644 --- a/core/os/input_event.cpp +++ b/core/os/input_event.cpp @@ -62,11 +62,11 @@ bool InputEvent::is_action(const StringName &p_action) const { bool InputEvent::is_action_pressed(const StringName &p_action) const { - return false; // InputMap::get_singleton()->event_is_action(Ref(this),p_action); + return (is_pressed() && !is_echo() && is_action(p_action)); } bool InputEvent::is_action_released(const StringName &p_action) const { - return false; + return (!is_pressed() && is_action(p_action)); } bool InputEvent::is_echo() const { -- cgit v1.2.3