diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2018-10-03 18:19:58 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-03 18:19:58 +0200 |
commit | 75fceb37f81e2a31479ea12d1f5ddc45174f823e (patch) | |
tree | b2e0b14a6bde70d179d4ad1c9fbb69dffa56f675 /doc | |
parent | 0fa25206d2254f16602cf05b839044a72b8eff65 (diff) | |
parent | c14e034f062ef1642ffc8c5ca4c4d85d59e79ad1 (diff) |
Merge pull request #22674 from Dragoncraft89/find_node
Document find_node()'s owner argument behaviour
Diffstat (limited to 'doc')
-rw-r--r-- | doc/classes/Node.xml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/classes/Node.xml b/doc/classes/Node.xml index 90e9436307..dc754b4628 100644 --- a/doc/classes/Node.xml +++ b/doc/classes/Node.xml @@ -176,6 +176,7 @@ </argument> <description> Finds a descendant of this node whose name matches [code]mask[/code] as in [method String.match] (i.e. case sensitive, but '*' matches zero or more characters and '?' matches any single character except '.'). Note that it does not match against the full path, just against individual node names. + If [code]owned[/code] is [code]true[/code], this method only finds nodes whose owner is this node. This is especially important for scenes instantiated through script, because those scenes don't have an owner. </description> </method> <method name="get_child" qualifiers="const"> |