From cee98e5a0b9d6612eaf3df67e3bb9848fe0aa18b Mon Sep 17 00:00:00 2001 From: florian Date: Wed, 3 Oct 2018 14:36:25 +0200 Subject: [PATCH] Document find_node()'s owner argument behaviour (cherry picked from commit c14e034f062ef1642ffc8c5ca4c4d85d59e79ad1) --- doc/classes/Node.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/classes/Node.xml b/doc/classes/Node.xml index 4bd5202ec51..3e994cd77ba 100644 --- a/doc/classes/Node.xml +++ b/doc/classes/Node.xml @@ -170,6 +170,7 @@ 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.