mirror of
https://github.com/godotengine/godot.git
synced 2024-12-03 09:52:18 +08:00
81064cc239
We don't use that info for anything, and it generates unnecessary diffs every time we bump the minor version (and CI failures if we forget to sync some files from opt-in modules (mono, text_server_fb).
18 lines
831 B
XML
18 lines
831 B
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<class name="InputEventMagnifyGesture" inherits="InputEventGesture" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../class.xsd">
|
|
<brief_description>
|
|
Represents a magnifying touch gesture.
|
|
</brief_description>
|
|
<description>
|
|
Stores the factor of a magnifying touch gesture. This is usually performed when the user pinches the touch screen and used for zooming in/out.
|
|
</description>
|
|
<tutorials>
|
|
<link title="Using InputEvent">$DOCS_URL/tutorials/inputs/inputevent.html</link>
|
|
</tutorials>
|
|
<members>
|
|
<member name="factor" type="float" setter="set_factor" getter="get_factor" default="1.0">
|
|
The amount (or delta) of the event. This value is closer to [code]1.0[/code] the slower the gesture is performed.
|
|
</member>
|
|
</members>
|
|
</class>
|