Loading…
Documentation
Linear interpolation between two scalars. Output is A + t × (B − A), with t clamped to 0–1. At t = 0 you get A; at t = 1 you get B; in between you cross-fade smoothly.
Use it to cross-fade modulation sources, sit a parameter somewhere between two presets, or build chains of conditional behavior.
| Port | Type | Default | Range | Description |
|---|---|---|---|---|
| A | Scalar | 0.0 | any | First value (returned when t = 0) |
| B | Scalar | 0.0 | any | Second value (returned when t = 1) |
| T | Scalar | 0.0 | 0–1 | Blend factor, clamped to 0–1 |
| Port | Type | Description |
|---|---|---|
| Out | Scalar | A + clamp(T, 0, 1) × (B − A) |