Difference between revisions of "Find Parent By Name (LogiX node)/ja"

From Neos Wiki
Jump to navigation Jump to search
(Created page with "Find Parent By Name (LogiXノード)")
 
(Created page with "'''Find Parent By Name'''ノードは <code>Instance</code> 入力スロットの親で、入力 <code>Name</code> に一致する名前を持つスロットを探そうとし...")
Line 11: Line 11:
 
}}
 
}}
  
The '''Find Parent By Name''' node attempts to find a slot which is a parent of the <code>Instance</code> input slot which has a name matching the input <code>Name</code>.
+
'''Find Parent By Name'''ノードは <code>Instance</code> 入力スロットの親で、入力 <code>Name</code> に一致する名前を持つスロットを探そうとします。
  
 
== Usage ==
 
== Usage ==

Revision as of 14:03, 16 February 2022

Other languages:
English • ‎日本語
Find Parent By Name
'Find Parent By Name' LogiX node
Inputs
  Slot Instance
  String Name
  Bool MatchSubstring
  Int SearchDepth
  Bool IgnoreCase
Outputs
  Slot FoundChild

Find Parent By Nameノードは Instance 入力スロットの親で、入力 Name に一致する名前を持つスロットを探そうとします。

Usage

The MatchSubstring input determines whether slots whose names contain the input Name will be considered valid matches. True by default.


The SearchDepth input determines how many levels of the slot hierarchy the node will search for parent slots. 0 by default (i.e. searches only the Instance slot's direct parent).


The IgnoreCase input determines whether slot names which do not exactly match the upper/lower case of the Name input will be considered valid. True by default.


The FoundParent output is the first slot found whose name matches the input Name. Output is null if no valid match is found.


The search proceeds from the Instance input slot's direct parent to higher levels if allowed by the SearchDepth input. A SearchDepth of 0 (default) searches only the Instance input slot's direct parent, a depth of 1 allows searching of the Instance slot's parent's parent etc. A SearchDepth value of -1 allows searching to unlimited depth.

Examples

Node Menu

NodeMenu-Slots/ja