summaryrefslogtreecommitdiff
path: root/core/input
diff options
context:
space:
mode:
authorNick H <62965063+SirQuartz@users.noreply.github.com>2021-07-02 00:02:28 -0400
committerNick H <62965063+SirQuartz@users.noreply.github.com>2021-07-02 03:07:37 -0400
commitc6f28ed62b5b24033439e6c5d8517883d93c5f53 (patch)
tree9ca907f368c8d8a7e902910580d52ec4bf333cfe /core/input
parenteefe276a82c5ed080c10ac7c991e0348642621b2 (diff)
Add `get_dead_zone()` method to `InputMap`
This commit adds a new method to the `InputMap`, allowing the user to get the value of an action's dead zone as a float.
Diffstat (limited to 'core/input')
-rw-r--r--core/input/input_map.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/input/input_map.cpp b/core/input/input_map.cpp
index 52dc561546..b5f067d499 100644
--- a/core/input/input_map.cpp
+++ b/core/input/input_map.cpp
@@ -45,6 +45,7 @@ void InputMap::_bind_methods() {
ClassDB::bind_method(D_METHOD("erase_action", "action"), &InputMap::erase_action);
ClassDB::bind_method(D_METHOD("action_set_deadzone", "action", "deadzone"), &InputMap::action_set_deadzone);
+ ClassDB::bind_method(D_METHOD("action_get_deadzone", "action"), &InputMap::action_get_deadzone);
ClassDB::bind_method(D_METHOD("action_add_event", "action", "event"), &InputMap::action_add_event);
ClassDB::bind_method(D_METHOD("action_has_event", "action", "event"), &InputMap::action_has_event);
ClassDB::bind_method(D_METHOD("action_erase_event", "action", "event"), &InputMap::action_erase_event);