diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-10-02 15:01:02 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-10-02 15:01:02 +0200 |
commit | 336d91551d9aaf84a9b5e0cefc88c73daaec1e9d (patch) | |
tree | 854c3997f361991dbf0dbfffe657f240f89acf65 /doc/classes | |
parent | 0b2446101c7294d633f6a8d889d89ecca5bb3965 (diff) | |
parent | d532eecc8183c8b35fa7f1d3429daf4bf44d0f7e (diff) | |
download | redot-engine-336d91551d9aaf84a9b5e0cefc88c73daaec1e9d.tar.gz |
Merge pull request #97281 from reptofrog/deadzone-new-default
Input: Change the default deadzone value for new actions from 0.5 to 0.2
Diffstat (limited to 'doc/classes')
-rw-r--r-- | doc/classes/InputMap.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/classes/InputMap.xml b/doc/classes/InputMap.xml index ff04040826..0abd7c6974 100644 --- a/doc/classes/InputMap.xml +++ b/doc/classes/InputMap.xml @@ -67,7 +67,7 @@ <method name="add_action"> <return type="void" /> <param index="0" name="action" type="StringName" /> - <param index="1" name="deadzone" type="float" default="0.5" /> + <param index="1" name="deadzone" type="float" default="0.2" /> <description> Adds an empty action to the [InputMap] with a configurable [param deadzone]. An [InputEvent] can then be added to this action with [method action_add_event]. |