You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1 - there is no callback or way to know when a knob is turned except for registering onTick and comparing values.
We can't detect changes and emit MIDI if transport isn't running.
Options:
onChange(name) when a value changes, called from process
ability to register a timer
change onTick to call regardless of transport state
what could get abused? onChange when there's tons of knobs could slow shit down a lot. maybe we call it once with a list of parameters that changed this time slice?
onChange(parameterNames)
2 - someone else updating a value re-renders a ton of shit on other users
The text was updated successfully, but these errors were encountered:
boourns
changed the title
FunctionSequencer rough edges
No way to detect knob change without polling in onTick
Jan 28, 2023
1 - there is no callback or way to know when a knob is turned except for registering onTick and comparing values.
We can't detect changes and emit MIDI if transport isn't running.
Options:
onChange(name)
when a value changes, called fromprocess
what could get abused?
onChange
when there's tons of knobs could slow shit down a lot. maybe we call it once with a list of parameters that changed this time slice?onChange(parameterNames)
2 - someone else updating a value re-renders a ton of shit on other users
The text was updated successfully, but these errors were encountered: