From e01bf42ca5ea93bf15a9e05728e1f3e7c3a4af72 Mon Sep 17 00:00:00 2001 From: Markus Sauermann <6299227+Sauermann@users.noreply.github.com> Date: Sun, 25 Feb 2024 12:04:35 +0100 Subject: [PATCH] Document that `parse_input_event` doesn't influence the OS (cherry picked from commit 8121446385fdebb04ee27c505be94ee88cce61d1) --- doc/classes/Input.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/classes/Input.xml b/doc/classes/Input.xml index bed65e277da..b0950a83184 100644 --- a/doc/classes/Input.xml +++ b/doc/classes/Input.xml @@ -279,6 +279,7 @@ Input.ParseInputEvent(cancelEvent); [/csharp] [/codeblocks] + [b]Note:[/b] Calling this function has no influence on the operating system. So for example sending an [InputEventMouseMotion] will not move the OS mouse cursor to the specified position (use [method warp_mouse] instead) and sending [kbd]Alt/Cmd + Tab[/kbd] as [InputEventKey] won't toggle between active windows.