とができる。 取得したノードの名前から、prefixで配置 するノードを絞り込み配置する。 41 def getNodeTypes(): # Get the list of available node categories node_categories = hou.nodeTypeCategories() # Loop through each category and get the node types all_node_types = [] for category in node_categories.values(): node_types = category.nodeTypes().values() all_node_types.extend(node_types) return all_node_types def getDoorPreprocessorNodeTypeNames(): shape_nodes_type_names = [] for node_type in getNodeTypes(): name = node_type.name().lower() if "jph_wall_detail_door_preprocessor" in name: shape_nodes_type_names.append(node_type.name()) return shape_nodes_type_names