summaryrefslogtreecommitdiff
path: root/doc/classes
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2022-07-03 12:16:16 +0200
committerRémi Verschelde <rverschelde@gmail.com>2022-07-03 12:16:16 +0200
commit00b3822306deed11547ae05e513bf7031dcba3da (patch)
tree17ade3a848bed047343e01b1f6a3f7c83af96dd8 /doc/classes
parent6f024546341fa53eccdafff39e5095979e346c72 (diff)
Input: Re-enable input accumulation by default
I turned it off by mistake in #38697. See also #62664 for details on this boolean's complex history :)
Diffstat (limited to 'doc/classes')
-rw-r--r--doc/classes/Input.xml1
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/classes/Input.xml b/doc/classes/Input.xml
index 66683fa0ee..e73021ead4 100644
--- a/doc/classes/Input.xml
+++ b/doc/classes/Input.xml
@@ -375,6 +375,7 @@
<member name="use_accumulated_input" type="bool" setter="set_use_accumulated_input" getter="is_using_accumulated_input">
If [code]true[/code], similar input events sent by the operating system are accumulated. When input accumulation is enabled, all input events generated during a frame will be merged and emitted when the frame is done rendering. Therefore, this limits the number of input method calls per second to the rendering FPS.
Input accumulation can be disabled to get slightly more precise/reactive input at the cost of increased CPU usage. In applications where drawing freehand lines is required, input accumulation should generally be disabled while the user is drawing the line to get results that closely follow the actual input.
+ [b]Note:[/b] Input accumulation is [i]enabled[/i] by default.
</member>
</members>
<signals>