diff options
author | Chaosus <chaosus89@gmail.com> | 2019-06-26 21:50:38 +0300 |
---|---|---|
committer | Chaosus <chaosus89@gmail.com> | 2019-06-27 10:48:18 +0300 |
commit | 0aec3c3113ce8319ffdc795ee2d06a7ec04036fc (patch) | |
tree | b571630a184d43b028d767f11ec61babd5e08738 /doc | |
parent | 2c96942df9318ea8a4f3ad06d007e46e3108fa48 (diff) |
Shows menu when dragging connection on empty space in visual shader graph
Diffstat (limited to 'doc')
-rw-r--r-- | doc/classes/GraphEdit.xml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/doc/classes/GraphEdit.xml b/doc/classes/GraphEdit.xml index db186eab35..034a64a3fa 100644 --- a/doc/classes/GraphEdit.xml +++ b/doc/classes/GraphEdit.xml @@ -211,6 +211,17 @@ Signal sent to the GraphEdit when the connection between 'from_slot' slot of 'from' GraphNode and 'to_slot' slot of 'to' GraphNode is attempted to be created. </description> </signal> + <signal name="connection_from_empty"> + <argument index="0" name="to" type="String"> + </argument> + <argument index="1" name="to_slot" type="int"> + </argument> + <argument index="2" name="release_position" type="Vector2"> + </argument> + <description> + Signal sent when user dragging connection from input port into empty space of the graph. + </description> + </signal> <signal name="connection_to_empty"> <argument index="0" name="from" type="String"> </argument> @@ -219,6 +230,7 @@ <argument index="2" name="release_position" type="Vector2"> </argument> <description> + Signal sent when user dragging connection from output port into empty space of the graph. </description> </signal> <signal name="delete_nodes_request"> |