Find Child By Name
Slots
Finds a child object under Instance (Slot) that matches the given arguments
Inputs
Instance (Slot)
The slot to scan for children with.
Name (String)
The name to look for under Instance (Slot).
MatchSubstring (bool)
Whether to search for children under Instance (Slot) that their name contains Name (String) instead of the entire name being equal.
IgnoreCase (bool)
Whether the capitalization should matter or not when searching for a child under Instance (Slot).
SearchDepth (int)
How far to search for a child with the provided search arguments
Examples: 0 > Search immediate children. 1 > Search children of slot including those slot's children. -1 > Search infinitely far down (HEAVY)
Outputs
* (Slot)
The result of the search.
Examples
-
An example code finding slots under and above other slots in a list, one of the nodes is a Find Child By Name.