diff options
author | florian <floriankothmeier@web.de> | 2018-10-03 14:36:25 +0200 |
---|---|---|
committer | florian <floriankothmeier@web.de> | 2018-10-03 18:16:27 +0200 |
commit | c14e034f062ef1642ffc8c5ca4c4d85d59e79ad1 (patch) | |
tree | 95dc42c52e0d1f96c2af2bdb245a27c00efa947b /doc/classes/Node.xml | |
parent | c1cee80829f10d32cc23067291321b049af7082d (diff) |
Document find_node()'s owner argument behaviour
Diffstat (limited to 'doc/classes/Node.xml')
-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"> |