Hi there! I have a remark and a question in the same time about this “slide arpeggio”: try with note_slide: 0.2 and you’ll hear correctly all the notes of the arpeggio…But try with note-slide: 1 and personnaly, I don’t hear any more the note 72 (the :C) Have you got the same impression? Someone has an explanation…? Sam @samaaron if you read this post…
Thanks for your attention!
s = play 60, release: 5, note_slide: 0.2 ##note_slide: 1
sleep 0.5
control s, note: 65
sleep 0.5
control s, note: 67
sleep 0.5
control s, note: 72
sleep 0.5
control s, note: 67
sleep 0.5
control s, note: 65
sleep 0.5
control s, note: 60
By systematizing, I get this kind of code, for example… Siren or wave?
use_bpm 240
with_fx :reverb, mix: 0.5 do
live_loop :slide do
s = play 60, release: 5, note_slide: 1, amp_slide: 1, pan: rrand(-0.9, 0.9), pan_slide: 1
sleep 0.5
control s, note: 65, amp: 0.9
sleep 0.5
control s, note: 67, amp: 1.3
sleep 0.5
control s, note: 84, amp: 1.6
sleep 0.5
control s, note: 67, amp: 2
sleep 0.5
control s, note: 65, amp: 1.8
sleep 0.5
control s, note: 60, amp: 0.9
sleep 0.5
end
end