DD-LogicNodes
A collection of Logic Nodes that I think are missing in core ComfyUI.
Nodes (14)
The \"everything's ready, go\" check
The AND gate that hands you a value, not just a true/false
\"did anything actually arrive?\" as a branch condition
The \"everything except both-true\" gate
Fall back only when both conditions are true
The \"neither condition is true\" check
The \"take the good path when nothing's true\" router
The \"both conditions agree\" check
Route on whether two conditions agree
The \"exactly one, never both\" condition
Pick the exclusive mode, skip the other branch
The one-input inverter that's harder to live without than it looks
\"any of these is enough\"
The if/then you'll actually use every day
DD-LogicNodes
A collection of Logic Nodes that I think are missing in core ComfyUI.
Incomplete Yet Complete
This currently has 14 nodes.
Logic
- DD If Not
- Returns a flipped boolean.
- DD Or Gate
- Returns true if either expression is true.
- DD And Getter
- Returns true only if both ezpressions are true.
- DD XOR Getter
- Returns true only if one expression is true.
- DD NOR Getter
- Returns true only if both ezpressions are false.
- DD NAND Getter
- Returns true except when both expressions are true.
- DD XNOR Getter
- Returns true if both expresions are true or if both expresions are false.
Logical Getters
- DD If Any Getter
- Returns
on_trueif any value is passed through.
- Returns
- DD Or Getter
- Returns
on_trueif the expression is true.
- Returns
- DD And Getter
- Returns
on_trueonly if both ezpressions are true.
- Returns
- DD XOR Getter
- Returns
on_trueonly if one expression is true.
- Returns
- DD NOR Getter
- Returns
on_trueonly if both ezpressions are false.
- Returns
- DD NAND Getter
- Returns
on_trueexcept when both expressions are true.
- Returns
- DD XNOR Getter
- Returns
on_trueif both expresions are true or if both expresions are false.
- Returns
Logic Helpers
- DD Rerouter
- Allows you to change where something is routed.