Lerp
Linearly interpolates between A and B by T.
T is clamped to 0–1. Values outside the range stop at the ends.
Math nodes take a float and return a float, and are used as relays that convert a knob’s value into another value. For the full picture, see Math.
Input ports
| Port ID | Type |
|---|---|
A | float |
B | float |
T | float |
Trigger | trigger |
Output ports
| Port ID | Type |
|---|---|
Out | float |
Scriptable members
| Path | Type |
|---|---|
inputA | float |
inputB | float |
inputT | float |
valueA | float |
valueB | float |
valueT | float |
Synapse Apps (scripting)
await synapse.modules.create({ type: "lerp" }) 




