Hi there :
This is the way,how i accommodated,the drone ideas you sent to me;
i choosed a more static drome,and put some random moviment
on pad:
# Lynch Background
in_thread(drone: :lynch) do
loop do
sync :tick
r = 20
with_fx :reverb, room: 0.75 do
use_transpose 12
synth:fm,note: hz_to_midi(82),release: r,amp: 0.1
synth:fm,note: hz_to_midi(84),release: r,amp: 0.1
x = [76, 77, 87, 88].ring
use_transpose 0
f = (ring 60,70,80,90).choose
ph = (ring 0.25,0.5,1).choose
with_fx :ring_mod,amp: 0.5,freq: 30,freq_slide: f,mod_amp: 2 do
with_fx :ixi_techno, phase: ph,res: 0.5,amp: 1,mix: 0.6 do
synth [:pretty_bell,:dull_bell].choose,note: hz_to_midi(x.tick),
sustain: r,release: r/2, amp: 0.6,pan: rrand(-1,1)
sleep r/4
end
end
end
in_thread(diades: :diades) do
loop do
sync :tick
r = 20
use_synth :hollow
with_synth_defaults amp: 0.4,cutoff: 110,noise:(ring 0,1,2,3,4).choose do
with_fx :reverb, room: 0.75 do
use_transpose 0
play choose([:E4,:F4]), attack: 2, release: 4
sleep r/2
play choose([:As4,:B4]), attack: 4, release: 5
sleep r/5
play choose([:G4, :D5]), attack: 5, release: 3
sleep r/6
end
end
end
end
end
end
Thank you all.