summaryrefslogtreecommitdiff
path: root/doc/classes
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <remi@verschelde.fr>2022-01-04 00:40:02 +0100
committerGitHub <noreply@github.com>2022-01-04 00:40:02 +0100
commitdcb1b8247fb633ca077f1e4be1090a3c1c758af4 (patch)
treed5665214ce82d7d2c6ab0882fa53b4948af96cb0 /doc/classes
parent8501233401cd53a6bd6def78202856828ce2a40f (diff)
parent37dfe5c7066a6e7edefaa371d4f89d1a662ce7fd (diff)
Merge pull request #56209 from skyace65/mouseInputEvent
Improve mouse input event class reference
Diffstat (limited to 'doc/classes')
-rw-r--r--doc/classes/InputEventMouse.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/classes/InputEventMouse.xml b/doc/classes/InputEventMouse.xml
index 4878090996..5215c29b4a 100644
--- a/doc/classes/InputEventMouse.xml
+++ b/doc/classes/InputEventMouse.xml
@@ -14,10 +14,10 @@
The mouse button mask identifier, one of or a bitwise combination of the [enum MouseButton] button masks.
</member>
<member name="global_position" type="Vector2" setter="set_global_position" getter="get_global_position" default="Vector2(0, 0)">
- The global mouse position relative to the current [Viewport] when used in [method Control._gui_input], otherwise is at 0,0.
+ The global mouse position relative to the current [Viewport]. If used in [method Control._gui_input] and if the current [Control] is not under the mouse, moving it will not update this value.
</member>
<member name="position" type="Vector2" setter="set_position" getter="get_position" default="Vector2(0, 0)">
- The local mouse position relative to the [Viewport]. If used in [method Control._gui_input], the position is relative to the current [Control] which is under the mouse.
+ The local mouse position relative to the [Viewport]. If used in [method Control._gui_input], the position is relative to the current [Control] which is under the mouse. If the current [Control] is not under the mouse, moving it will not update this value.
</member>
</members>
</class>