From 8f10d7dd194d205e1991be222c9afdc49a5f78a1 Mon Sep 17 00:00:00 2001 From: Micky Date: Wed, 10 Jan 2024 17:31:17 +0100 Subject: [PATCH] Add missing descriptions to remaining signals. --- doc/classes/GraphEdit.xml | 16 +++++++++------- doc/classes/Skeleton3D.xml | 6 ++++++ 2 files changed, 15 insertions(+), 7 deletions(-) diff --git a/doc/classes/GraphEdit.xml b/doc/classes/GraphEdit.xml index 95e760be9f96..97b61873e4e2 100644 --- a/doc/classes/GraphEdit.xml +++ b/doc/classes/GraphEdit.xml @@ -301,7 +301,7 @@ - Emitted at the beginning of a GraphNode movement. + Emitted at the beginning of a [GraphElement]'s movement. @@ -344,13 +344,14 @@ - Emitted when the user presses [kbd]Ctrl + C[/kbd]. + 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. - Emitted when attempting to remove a GraphNode from the GraphEdit. Provides a list of node names to be removed (all selected nodes, excluding nodes without closing button). + Emitted when this [GraphEdit] captures a [code]ui_graph_delete[/code] action ([kbd]Delete[/kbd] by default). + [param nodes] is an array of node names that should be removed. These usually include all selected nodes. @@ -364,28 +365,29 @@ - Emitted when a GraphNode is attempted to be duplicated in the GraphEdit. + Emitted when this [GraphEdit] captures a [code]ui_graph_duplicate[/code] action ([kbd]Ctrl + D[/kbd] by default). In general, this signal indicates that the selected [GraphElement]s should be duplicated. - Emitted at the end of a GraphNode movement. + Emitted at the end of a [GraphElement]'s movement. + Emitted when the given [GraphElement] node is deselected. - Emitted when a GraphNode is selected. + Emitted when the given [GraphElement] node is selected. - Emitted when the user presses [kbd]Ctrl + V[/kbd]. + Emitted when this [GraphEdit] captures a [code]ui_paste[/code] action ([kbd]Ctrl + V[/kbd] by default). In general, this signal indicates that previously copied [GraphElement]s should be pasted. diff --git a/doc/classes/Skeleton3D.xml b/doc/classes/Skeleton3D.xml index 6cb1c948ea2f..2a629abc0db3 100644 --- a/doc/classes/Skeleton3D.xml +++ b/doc/classes/Skeleton3D.xml @@ -310,12 +310,14 @@ [b]Note:[/b] Unless this value is [code]1.0[/code], the key value in animation will not match the actual position value. + If [code]true[/code], forces the bones in their default rest pose, regardless of their values. In the editor, this also prevents the bones from being edited. + Emitted when the bone at [param bone_idx] is toggled with [method set_bone_enabled]. Use [method is_bone_enabled] to check the new value. @@ -326,15 +328,19 @@ + Emitted when the pose is updated, after [constant NOTIFICATION_UPDATE_SKELETON] is received. + Emitted when the value of [member show_rest_only] changes. + Notification received when this skeleton's pose needs to be updated. + This notification is received [i]before[/i] the related [signal pose_updated] signal.