diff options
author | kobewi <kobewi4e@gmail.com> | 2021-12-06 13:10:17 +0100 |
---|---|---|
committer | kobewi <kobewi4e@gmail.com> | 2021-12-06 13:10:17 +0100 |
commit | cb2bdcd286c380906044e941ddc8e437f6111bc5 (patch) | |
tree | 8aeb7e4fbc12938d084c8f8a1fa048ab35dcb869 /core/input | |
parent | 3a7d5a1c64fa6e5a46b49101f3c04104ad9b954b (diff) |
Unexpose joy_connection_changed method
Diffstat (limited to 'core/input')
-rw-r--r-- | core/input/input.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/core/input/input.cpp b/core/input/input.cpp index 342ab3b704..b72d980681 100644 --- a/core/input/input.cpp +++ b/core/input/input.cpp @@ -103,7 +103,6 @@ void Input::_bind_methods() { ClassDB::bind_method(D_METHOD("get_vector", "negative_x", "positive_x", "negative_y", "positive_y", "deadzone"), &Input::get_vector, DEFVAL(-1.0f)); ClassDB::bind_method(D_METHOD("add_joy_mapping", "mapping", "update_existing"), &Input::add_joy_mapping, DEFVAL(false)); ClassDB::bind_method(D_METHOD("remove_joy_mapping", "guid"), &Input::remove_joy_mapping); - ClassDB::bind_method(D_METHOD("joy_connection_changed", "device", "connected", "name", "guid"), &Input::joy_connection_changed); ClassDB::bind_method(D_METHOD("is_joy_known", "device"), &Input::is_joy_known); ClassDB::bind_method(D_METHOD("get_joy_axis", "device", "axis"), &Input::get_joy_axis); ClassDB::bind_method(D_METHOD("get_joy_name", "device"), &Input::get_joy_name); |