aboutsummaryrefslogtreecommitdiff
path: root/core/os/input_event.cpp
diff options
context:
space:
mode:
authorAndreas Haas2017-05-26 21:14:59 +0200
committerAndreas Haas2017-05-27 10:52:57 +0200
commit3204befd1eb42cc87ae296148e1361a8b001d08d (patch)
tree5b2cff251fe700e33efafd6d67fb8749ef315a2c /core/os/input_event.cpp
parent8d9206516428ca55f0832db5f261516654929676 (diff)
downloadgodot-3204befd1eb42cc87ae296148e1361a8b001d08d.tar.gz
godot-3204befd1eb42cc87ae296148e1361a8b001d08d.tar.zst
godot-3204befd1eb42cc87ae296148e1361a8b001d08d.zip
Diffstat (limited to 'core/os/input_event.cpp')
-rw-r--r--core/os/input_event.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/os/input_event.cpp b/core/os/input_event.cpp
index cf3b8f74e..7ec76c1ee 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<InputEvent>(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 {