summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSpartan322 <Megacake1234@gmail.com>2024-11-15 16:17:50 -0500
committerSpartan322 <Megacake1234@gmail.com>2024-11-15 16:17:50 -0500
commit95c90a98d9843aa1d6cda40a60c38f0b23367625 (patch)
tree5acf02f37ef2ef1cb5913e57fd571128b6eaebe1
parenta0eabe2acb487fa8cb6d4896b6df321d4802c87d (diff)
downloadredot-engine-95c90a98d9843aa1d6cda40a60c38f0b23367625.tar.gz
Correct `Node._unhandled_picking_input` to refer to InputEvent
-rw-r--r--doc/classes/Node.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/classes/Node.xml b/doc/classes/Node.xml
index 869a95eb6e..77dd8b2184 100644
--- a/doc/classes/Node.xml
+++ b/doc/classes/Node.xml
@@ -136,7 +136,7 @@
<return type="void" />
<param index="0" name="event" type="InputEvent" />
<description>
- Called when an [InputEventKey] hasn't been consumed by physics picking. The input event propagates up through the node tree in the current [Viewport] until a node consumes it.
+ Called when an [InputEvent] hasn't been consumed by physics picking. The input event propagates up through the node tree in the current [Viewport] until a node consumes it.
It is only called if unhandled picking input processing is enabled, which is done automatically if this method is overridden, and can be toggled with [method set_process_unhandled_picking_input].
To consume the input event and stop it propagating further to other nodes, [method Viewport.set_input_as_handled] can be called.
This method can be used to handle mouse and touch events that were not set to handled during physics picking.