summaryrefslogtreecommitdiffstats
path: root/doc/classes/Control.xml
diff options
context:
space:
mode:
authorGilles Roudière <gilles.roudiere@gmail.com>2021-09-29 17:48:27 +0200
committerGilles Roudière <gilles.roudiere@gmail.com>2021-10-19 11:57:37 +0200
commit1a95f893c4ed4d4ac872a294c64d06ee70fa10bd (patch)
treefb0deddf534c76189f0044bca36b46ef2f8dc444 /doc/classes/Control.xml
parent4387f9645b1f54755506804770ba15c6c9cd5094 (diff)
downloadredot-engine-1a95f893c4ed4d4ac872a294c64d06ee70fa10bd.tar.gz
Implement TileMap patterns palette
Diffstat (limited to 'doc/classes/Control.xml')
-rw-r--r--doc/classes/Control.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/classes/Control.xml b/doc/classes/Control.xml
index 7c8239977f..332d171457 100644
--- a/doc/classes/Control.xml
+++ b/doc/classes/Control.xml
@@ -763,10 +763,10 @@
</method>
<method name="set_drag_forwarding">
<return type="void" />
- <argument index="0" name="target" type="Node" />
+ <argument index="0" name="target" type="Object" />
<description>
- Forwards the handling of this control's drag and drop to [code]target[/code] node.
- Forwarding can be implemented in the target node similar to the methods [method _get_drag_data], [method _can_drop_data], and [method _drop_data] but with two differences:
+ Forwards the handling of this control's drag and drop to [code]target[/code] object.
+ Forwarding can be implemented in the target object similar to the methods [method _get_drag_data], [method _can_drop_data], and [method _drop_data] but with two differences:
1. The function name must be suffixed with [b]_fw[/b]
2. The function must take an extra argument that is the control doing the forwarding
[codeblocks]