I'd like to run a loop while a note is held.
The loop has a play_note in it fed by a buffer generated on_note
if I call my loop inside on_note, the play_note loop instances for each note held, <-bad
instead of just one continuous loop while any amount of notes held. (which i want)
I can't set a var to be 1 on_note and 0 on_release because when the play_note loop happens, on_release happens stopping the loop
It seems like this loop will have to run called elsewhere whether notes are down or not? or is there another way for the ONCB to call the loop without starting multiple new instances of the loop each time?🤔