Node.findNode

Finds a descendant of this node whose name matches mask as in 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 owned is true, 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.

struct Node
@nogc nothrow const
findNode
(
StringArg0
)
(
in StringArg0 mask
,
in bool recursive = true
,
in bool owned = true
)

Meta