tell me if something is wrong or to improve…Enjoy!
use_bpm 98
live_loop :sp do
use_synth :pluck
use_random_seed 333
16.times do
play scale(40, :minor_pentatonic).tick, amp: 0.5, release: 0.3 if spread(11, 16).tick
sleep 0.25
end
end
live_loop :sp2 do
use_synth :pluck
use_random_seed 334
16.times do
play scale(40, :minor_pentatonic).tick, amp: 0.5,release: 0.3 if spread(6, 16).tick
sleep 0.25
end
end
live_loop :sp3 do
use_synth :bass_foundation
use_random_seed 335
16.times do
play scale(40, :minor_pentatonic).tick, release: 0.3, pan: rrand(-1,1) if spread(6, 16).tick
sleep 0.25
end
end
live_loop :note do
with_fx :reverb, room: 0.9 do
density 4 do
use_synth :pluck
play [:e4,:g4,:b4,:e5], amp: 0.6 if spread(15,16).tick
sleep 1
end
end
end
live_loop :nappe do
with_fx :slicer, phase: 0.7 do
with_fx :reverb, room: 0.9, damp: 0.6 do
sync :note
sample :ambi_choir, amp: 2,rpitch: 4, pan: rrand(-1,1), onset: pick
sleep 8
end
end
end