diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2021-11-10 21:56:20 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-10 21:56:20 +0100 |
commit | 7b3abf17fdde312eb8ae85924e511f30bce4ea3b (patch) | |
tree | 9e688f0b0e5b223a5e110d90ebe6dc8f9ebaaac7 /doc/classes | |
parent | 3668312e786d0e06fee627e5255edef88710cc9b (diff) | |
parent | e3def401609a7fd0304779d0a95f01e039e7478d (diff) |
Merge pull request #49708 from megalobyte/editor_description_fix
Diffstat (limited to 'doc/classes')
-rw-r--r-- | doc/classes/Node.xml | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/doc/classes/Node.xml b/doc/classes/Node.xml index 843db8c174..3745b394e0 100644 --- a/doc/classes/Node.xml +++ b/doc/classes/Node.xml @@ -228,11 +228,6 @@ If [code]include_internal[/code] is [code]false[/code], the returned array won't include internal children (see [code]internal[/code] parameter in [method add_child]). </description> </method> - <method name="get_editor_description" qualifiers="const"> - <return type="String" /> - <description> - </description> - </method> <method name="get_groups" qualifiers="const"> <return type="Array" /> <description> @@ -618,12 +613,6 @@ Sets the editable children state of [code]node[/code] relative to this node. This method is only intended for use with editor tooling. </description> </method> - <method name="set_editor_description"> - <return type="void" /> - <argument index="0" name="editor_description" type="String" /> - <description> - </description> - </method> <method name="set_multiplayer_authority"> <return type="void" /> <argument index="0" name="id" type="int" /> @@ -702,6 +691,9 @@ <member name="custom_multiplayer" type="MultiplayerAPI" setter="set_custom_multiplayer" getter="get_custom_multiplayer"> The override to the default [MultiplayerAPI]. Set to [code]null[/code] to use the default [SceneTree] one. </member> + <member name="editor_description" type="String" setter="set_editor_description" getter="get_editor_description" default=""""> + Add a custom description to a node. + </member> <member name="multiplayer" type="MultiplayerAPI" setter="" getter="get_multiplayer"> The [MultiplayerAPI] instance associated with this node. Either the [member custom_multiplayer], or the default SceneTree one (if inside tree). </member> |