godot/doc/classes/InputEventMouseMotion.xml
Rémi Verschelde d516aab8fa doc: Sync with current source
Also enhance RigidBody docs as per https://github.com/godotengine/godot-docs/pull/1018
and fix the version tag in all files (not really stable yet, but it makes no sense
to hardcode rc3 at this stage).
2018-01-25 08:50:56 +01:00

27 lines
879 B
XML

<?xml version="1.0" encoding="UTF-8" ?>
<class name="InputEventMouseMotion" inherits="InputEventMouse" category="Core" version="3.0-stable">
<brief_description>
Input event type for mouse motion events.
</brief_description>
<description>
Contains mouse motion information. Supports relative, absolute positions and speed. See [method Node._input].
</description>
<tutorials>
http://docs.godotengine.org/en/3.0/learning/features/inputs/mouse_and_input_coordinates.html
</tutorials>
<demos>
</demos>
<methods>
</methods>
<members>
<member name="relative" type="Vector2" setter="set_relative" getter="get_relative">
Mouse position relative to the previous position (position at the last frame).
</member>
<member name="speed" type="Vector2" setter="set_speed" getter="get_speed">
Mouse speed.
</member>
</members>
<constants>
</constants>
</class>