diff options
author | Andreas Haas <liu.gam3@gmail.com> | 2017-08-12 13:03:44 +0200 |
---|---|---|
committer | Andreas Haas <liu.gam3@gmail.com> | 2017-08-12 13:04:14 +0200 |
commit | 5052cb2b9104f57d0ff38d80da50bbeceb926e6f (patch) | |
tree | 749c0b9d5d2c1f388089161788ac5ebdd25fe85f /core | |
parent | 23f6d3fa69935c90c6cdcee342ae99d226e9b4ab (diff) |
InputEventJoypadMotion: Add missing is_pressed() method.
Diffstat (limited to 'core')
-rw-r--r-- | core/os/input_event.cpp | 5 | ||||
-rw-r--r-- | core/os/input_event.h | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/core/os/input_event.cpp b/core/os/input_event.cpp index fe0e2c2524..cb38eb67b6 100644 --- a/core/os/input_event.cpp +++ b/core/os/input_event.cpp @@ -595,6 +595,11 @@ float InputEventJoypadMotion::get_axis_value() const { return axis_value; } +bool InputEventJoypadMotion::is_pressed() const { + + return Math::abs(axis_value) > 0.5f; +} + bool InputEventJoypadMotion::action_match(const Ref<InputEvent> &p_event) const { Ref<InputEventJoypadMotion> jm = p_event; diff --git a/core/os/input_event.h b/core/os/input_event.h index b120d4b840..d1fd7cc90f 100644 --- a/core/os/input_event.h +++ b/core/os/input_event.h @@ -348,6 +348,7 @@ public: void set_axis_value(float p_value); float get_axis_value() const; + virtual bool is_pressed() const; virtual bool action_match(const Ref<InputEvent> &p_event) const; virtual bool is_action_type() const { return true; } |