What's new

Arpeggiator with mono polyphony (help)

fedemantoni94

New Member
Hello everyone. Is it possible to add a button with a polyphony function to an arpeggiator so that when playing it sounds in mono or poly? That is, when playing several keys, only the last key that is played sounds, not a chord or its ascending or descending function.
 
Isn't mono polyphony an oxymoron? I'm not sure what you're asking for, is it a toggle that will switch off arpeggiation and instead play the note being played? But why the last key pressed?
 
You can very quickly make something monophonic by always turning off the previous note. Either with a fade out or a note_off. But you will need to do this where the arpeggiator is creating the notes.

on init declare $last_id end on on note note_off($last_id) $last_id:= $EVENT_ID end on
 
Top Bottom