Clarify direction of input event propagation
(cherry picked from commit 2d0a55c86c
)
This commit is contained in:
parent
2d0e7bd484
commit
172c6c615e
|
@ -32,7 +32,7 @@
|
||||||
<argument index="0" name="event" type="InputEvent">
|
<argument index="0" name="event" type="InputEvent">
|
||||||
</argument>
|
</argument>
|
||||||
<description>
|
<description>
|
||||||
The node's parent forwards input events to this method. Use it to process and accept inputs on UI elements. See [method accept_event].
|
Use this method to process and accept inputs on UI elements. See [method accept_event].
|
||||||
Replaces Godot 2's [code]_input_event[/code].
|
Replaces Godot 2's [code]_input_event[/code].
|
||||||
</description>
|
</description>
|
||||||
</method>
|
</method>
|
||||||
|
|
|
@ -44,7 +44,7 @@
|
||||||
<argument index="0" name="event" type="InputEvent">
|
<argument index="0" name="event" type="InputEvent">
|
||||||
</argument>
|
</argument>
|
||||||
<description>
|
<description>
|
||||||
Called when there is an input event. The input event propagates through the node tree until a node consumes it.
|
Called when there is an input event. The input event propagates up through the node tree until a node consumes it.
|
||||||
It is only called if input processing is enabled, which is done automatically if this method is overridden, and can be toggled with [method set_process_input].
|
It is only called if input processing is enabled, which is done automatically if this method is overridden, and can be toggled with [method set_process_input].
|
||||||
To consume the input event and stop it propagating further to other nodes, [method SceneTree.set_input_as_handled] can be called.
|
To consume the input event and stop it propagating further to other nodes, [method SceneTree.set_input_as_handled] can be called.
|
||||||
For gameplay input, [method _unhandled_input] and [method _unhandled_key_input] are usually a better fit as they allow the GUI to intercept the events first.
|
For gameplay input, [method _unhandled_input] and [method _unhandled_key_input] are usually a better fit as they allow the GUI to intercept the events first.
|
||||||
|
@ -87,7 +87,7 @@
|
||||||
<argument index="0" name="event" type="InputEvent">
|
<argument index="0" name="event" type="InputEvent">
|
||||||
</argument>
|
</argument>
|
||||||
<description>
|
<description>
|
||||||
Propagated to all nodes when the previous [InputEvent] is not consumed by any nodes.
|
Called when an [InputEvent] hasn't been consumed by [method _input] or any GUI. The input event propagates up through the node tree until a node consumes it.
|
||||||
It is only called if unhandled input processing is enabled, which is done automatically if this method is overridden, and can be toggled with [method set_process_unhandled_input].
|
It is only called if unhandled input processing is enabled, which is done automatically if this method is overridden, and can be toggled with [method set_process_unhandled_input].
|
||||||
To consume the input event and stop it propagating further to other nodes, [method SceneTree.set_input_as_handled] can be called.
|
To consume the input event and stop it propagating further to other nodes, [method SceneTree.set_input_as_handled] can be called.
|
||||||
For gameplay input, this and [method _unhandled_key_input] are usually a better fit than [method _input] as they allow the GUI to intercept the events first.
|
For gameplay input, this and [method _unhandled_key_input] are usually a better fit than [method _input] as they allow the GUI to intercept the events first.
|
||||||
|
@ -99,7 +99,7 @@
|
||||||
<argument index="0" name="event" type="InputEventKey">
|
<argument index="0" name="event" type="InputEventKey">
|
||||||
</argument>
|
</argument>
|
||||||
<description>
|
<description>
|
||||||
Propagated to all nodes when the previous [InputEventKey] is not consumed by any nodes.
|
Called when an [InputEventKey] hasn't been consumed by [method _input] or any GUI. The input event propagates up through the node tree until a node consumes it.
|
||||||
It is only called if unhandled key input processing is enabled, which is done automatically if this method is overridden, and can be toggled with [method set_process_unhandled_key_input].
|
It is only called if unhandled key input processing is enabled, which is done automatically if this method is overridden, and can be toggled with [method set_process_unhandled_key_input].
|
||||||
To consume the input event and stop it propagating further to other nodes, [method SceneTree.set_input_as_handled] can be called.
|
To consume the input event and stop it propagating further to other nodes, [method SceneTree.set_input_as_handled] can be called.
|
||||||
For gameplay input, this and [method _unhandled_input] are usually a better fit than [method _input] as they allow the GUI to intercept the events first.
|
For gameplay input, this and [method _unhandled_input] are usually a better fit than [method _input] as they allow the GUI to intercept the events first.
|
||||||
|
|
Loading…
Reference in New Issue