A slider that outputs the handle’s current value to Out. The Min / Max of the travel range are ports too, so another node can move the range itself during a performance.
- Defaults are
Min = 0, Max = 1, value = 0
- Plugging a value into
Value physically moves the on-screen handle, and the result flows to the output. You can plug OSC or MIDI values straight in
- With a MIDI mapping (
slider), the incoming 0-1 is lerped into Min-Max to produce the value
Min / Max accept values typed directly next to the port
The vertical/horizontal switch only affects the Control UI. A slider placed on the node is always drawn horizontally.
Input ports
| Port ID | Type |
Min | float |
Max | float |
Value | float |
Output ports
Scriptable members
| Path | Type |
minInput | float |
maxInput | float |
valueInput | float |
sliderMin | float |
sliderMax | float |
sliderValue | float |
isVertical | bool |
Synapse Apps (scripting)
await synapse.modules.create({ type: "Slider" })