diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-06-29 12:07:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-29 12:07:25 +0200 |
commit | 8fb7a9f0233f61d7a18359523002ab38797f6853 (patch) | |
tree | b3dbbea09c956d1d9bf61bf89df3b877d8678b91 /doc | |
parent | 8597db0ac2368f8c62c11099faa273f1b9311548 (diff) | |
parent | 899e5f8685dc10df5b24a1b765803e19224be61c (diff) |
Merge pull request #49719 from LightningAA/rename-node-is-ancestor-of
Rename `is_a_parent_of()` to `is_ancestor_of()`
Diffstat (limited to 'doc')
-rw-r--r-- | doc/classes/Node.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/classes/Node.xml b/doc/classes/Node.xml index 21f3f1fcc0..f185a2bc57 100644 --- a/doc/classes/Node.xml +++ b/doc/classes/Node.xml @@ -426,7 +426,7 @@ Returns [code]true[/code] if the [NodePath] points to a valid node and its subname points to a valid resource, e.g. [code]Area2D/CollisionShape2D:shape[/code]. Properties with a non-[Resource] type (e.g. nodes or primitive math types) are not considered resources. </description> </method> - <method name="is_a_parent_of" qualifiers="const"> + <method name="is_ancestor_of" qualifiers="const"> <return type="bool"> </return> <argument index="0" name="node" type="Node"> |