Conditioning Multi Combine
KJNodes/masking/conditioning
ConditioningMultiCombineCombines multiple conditioning nodes into one
Example
JSON Example
{
"class_type": "ConditioningMultiCombine",
"inputs": {
"inputcount": 2,
"operation": "combine",
"conditioning_1": [
"node_id",
0
],
"conditioning_2": [
"node_id",
0
]
}
}This example shows required inputs only. Connection values like ["node_id", 0] should reference actual node IDs from your workflow.
Inputs
| Name | Type | Status | Constraints | Default |
|---|---|---|---|---|
inputcount | INT | required | min: 2, max: 20, step: 1 | 2 |
operation | ENUM2 options
| required | - | "combine" |
conditioning_1 | CONDITIONING | required | - | - |
conditioning_2 | CONDITIONING | required | - | - |
Outputs
| Index | Name | Type | Is List | Connection Reference |
|---|---|---|---|---|
0 | combined | CONDITIONING | No | ["{node_id}", 0] |
1 | inputcount | INT | No | ["{node_id}", 1] |
How to connect to these outputs
To connect another node's input to an output from this node, use the connection reference format:
["node_id", output_index]Where node_id is the ID of this ConditioningMultiCombine node in your workflow, and output_index is the index from the table above.
Example
If this node has ID "5" in your workflow:
combined (CONDITIONING):["5", 0]inputcount (INT):["5", 1]
Was this page helpful?