From 4e07bab968f7bbe76d0de0342951a26188612277 Mon Sep 17 00:00:00 2001 From: FlamyAT Date: Thu, 18 Jul 2019 12:03:28 +0200 Subject: [PATCH] Added missing InputEvent documentation (cherry picked from commit 2046d7b87ade87766b7e668b8021d95647d34214) --- doc/classes/InputEvent.xml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/doc/classes/InputEvent.xml b/doc/classes/InputEvent.xml index 95ffe476d07..7cd3aee1732 100644 --- a/doc/classes/InputEvent.xml +++ b/doc/classes/InputEvent.xml @@ -17,6 +17,8 @@ + Returns [code]true[/code] if the given input event and this input event can be added together (only for events of type [InputEventMouseMotion]). + The given input event's position, global position and speed will be copied. The resulting [code]relative[/code] is a sum of both events. Both events' modifiers have to be identical. @@ -32,6 +34,7 @@ + Returns a value between 0.0 and 1.0 depending on the given actions' state. Useful for getting the value of events of type [InputEventJoypadMotion]. @@ -88,6 +91,7 @@ + Returns [code]true[/code] if the given input event is checking for the same key ([InputEventKey]), button ([InputEventJoypadButton]) or action ([InputEventAction]). @@ -98,6 +102,7 @@ + Returns a copy of the given input event which has been offset by [code]local_ofs[/code] and transformed by [code]xform[/code]. Relevant for events of type [InputEventMouseButton], [InputEventMouseMotion], [InputEventScreenTouch], [InputEventScreenDrag], [InputEventMagnifyGesture] and [InputEventPanGesture].