From 7adf4cc9b5de6701a41e27690a69b9892d5eed85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Fri, 30 Jul 2021 15:28:05 +0200 Subject: doc: Use self-closing tags for `return` and `argument` For the time being we don't support writing a description for those, preferring having all details in the method's description. Using self-closing tags saves half the lines, and prevents contributors from thinking that they should write the argument or return documentation there. --- doc/classes/InputMap.xml | 93 ++++++++++++++++-------------------------------- 1 file changed, 31 insertions(+), 62 deletions(-) (limited to 'doc/classes/InputMap.xml') diff --git a/doc/classes/InputMap.xml b/doc/classes/InputMap.xml index 3292555b4e..16c2695613 100644 --- a/doc/classes/InputMap.xml +++ b/doc/classes/InputMap.xml @@ -11,130 +11,99 @@ - - - - - - + + + Adds an [InputEvent] to an action. This [InputEvent] will trigger the action. - - - - - - + + + Removes an [InputEvent] from an action. - - - - + + Removes all events from an action. - - - - + + Returns a deadzone value for the action. - - - - + + Returns an array of [InputEvent]s associated with a given action. - - - - - - + + + Returns [code]true[/code] if the action has the given [InputEvent] associated with it. - - - - - - + + + Sets a deadzone value for the action. - - - - - - + + + Adds an empty action to the [InputMap] with a configurable [code]deadzone[/code]. An [InputEvent] can then be added to this action with [method action_add_event]. - - - - + + Removes an action from the [InputMap]. - - - - - - - - + + + + Returns [code]true[/code] if the given event is part of an existing action. This method ignores keyboard modifiers if the given [InputEvent] is not pressed (for proper release detection). See [method action_has_event] if you don't want this behavior. If [code]exact_match[/code] is [code]false[/code], it ignores the input modifiers for [InputEventKey] and [InputEventMouseButton] events, and the direction for [InputEventJoypadMotion] events. - - + Returns an array of all actions in the [InputMap]. - - - - + + Returns [code]true[/code] if the [InputMap] has a registered action with the given name. - - + Clears all [InputEventAction] in the [InputMap] and load it anew from [ProjectSettings]. -- cgit v1.2.3