summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <remi@verschelde.fr>2022-09-10 00:42:55 +0200
committerGitHub <noreply@github.com>2022-09-10 00:42:55 +0200
commit27e132347324318567419ac5039d51338d7d4f0e (patch)
tree3c4c472829ba28ac40c6290f6a13003f648ee5fc /doc
parentce6f284e5ff16794658db4ccd265b9c71f6b62b2 (diff)
parente19f7b240710febff277631ad52bcbf465257cf1 (diff)
Merge pull request #64412 from MewPurPur/remove-remove-and-skip
Remove `Node.remove_and_skip` method
Diffstat (limited to 'doc')
-rw-r--r--doc/classes/Node.xml6
1 files changed, 0 insertions, 6 deletions
diff --git a/doc/classes/Node.xml b/doc/classes/Node.xml
index 92beefa5fc..24faf3c167 100644
--- a/doc/classes/Node.xml
+++ b/doc/classes/Node.xml
@@ -577,12 +577,6 @@
Queues a node for deletion at the end of the current frame. When deleted, all of its child nodes will be deleted as well. This method ensures it's safe to delete the node, contrary to [method Object.free]. Use [method Object.is_queued_for_deletion] to check whether a node will be deleted at the end of the frame.
</description>
</method>
- <method name="remove_and_skip">
- <return type="void" />
- <description>
- Removes a node and sets all its children as children of the parent node (if it exists). All event subscriptions that pass by the removed node will be unsubscribed.
- </description>
- </method>
<method name="remove_child">
<return type="void" />
<param index="0" name="node" type="Node" />