ian
Converser

Posts: 8
|
Post by ian on Apr 10, 2020 2:20:45 GMT
I found the following in the manual:
# cloning rules
NX = XX +D400 +C # echo each note with 400ms delay
However, I don't want to clone the same note, I want to output a slightly different note (say 4 semi tones higher). This would be in addition to the original note.
|
|
nic
Soapbox Supremo  
Troublemaker
Press any key to continue
Posts: 2,011
|
Post by nic on Apr 12, 2020 14:46:24 GMT
Hello ian , To modify the note number (pitch) as well as add a delay you need to use an if/end rule. This example adds two semitones to each note along with the 400ms delay: # detect all note on/off events if MT < A0 # shift note (on/off) # up by 2 semitones calc I0 = M1 + 2
# send new transposed note, delayed send M0 I0 M2 +D400 endRegards, Nic.
|
|