diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-09-29 00:46:59 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-09-29 00:46:59 +0200 |
commit | 3fbd33af85ab89a90c16773c6f853ba577c48ee1 (patch) | |
tree | 143dd6e4329699d194fb7038211183acc07f657d /doc | |
parent | a11f970f91f8e049501d2077a3de3fba26bba1ba (diff) | |
parent | b4460c6ba3ef56b19713b86485aea37d5f136b5e (diff) | |
download | redot-engine-3fbd33af85ab89a90c16773c6f853ba577c48ee1.tar.gz |
Merge pull request #97229 from aryan-11825114/ctrl-x-visual-shader
Add `GraphEdit.cut_nodes_request` signal
Diffstat (limited to 'doc')
-rw-r--r-- | doc/classes/GraphEdit.xml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/classes/GraphEdit.xml b/doc/classes/GraphEdit.xml index 670df10a89..3451e427f3 100644 --- a/doc/classes/GraphEdit.xml +++ b/doc/classes/GraphEdit.xml @@ -399,6 +399,11 @@ Emitted when this [GraphEdit] captures a [code]ui_copy[/code] action ([kbd]Ctrl + C[/kbd] by default). In general, this signal indicates that the selected [GraphElement]s should be copied. </description> </signal> + <signal name="cut_nodes_request"> + <description> + Emitted when this [GraphEdit] captures a [code]ui_cut[/code] action ([kbd]Ctrl + X[/kbd] by default). In general, this signal indicates that the selected [GraphElement]s should be cut. + </description> + </signal> <signal name="delete_nodes_request"> <param index="0" name="nodes" type="StringName[]" /> <description> |