Compares A and B, and outputs 1 to Result if both are 1.0 or greater, otherwise 0. It recalculates and outputs whenever either A or B changes.
- The test is
A >= 1.0f && B >= 1.0f
- The node has numeric input fields for A and B, so you can type values in directly without connecting ports
The true/false boundary is 1.0, not 0. 0.5 counts as false. If you plug a Slider’s or an LFO’s 0–1 output straight in, it is only true at the moment the value reaches 1.0. When you want to decide the threshold yourself, put IFFilter upstream.
Input ports
Output ports
Scriptable members
| Path | Type |
currentValueA | float |
currentValueB | float |
Synapse Apps (scripting)
await synapse.modules.create({ type: "and" })