“A cool attitude”
Thanks for hearing! If you see someting to improve in my code, tell it to me…I hope you’ll like it…
use_bpm 30
a = 0.15
b = 0.2
live_loop :round do
with_fx :reverb, room: 0.8, mix: 0.8 do
with_fx :flanger, phase: 0.8, wave: 2, mix: 0.5 do
play 60,attack: b, release: 10, amp: a
play 64,attack: b, release: 20, amp: a
play 67,attack: b, release: 30, amp: a
play 71,attack: b, release: 40, amp: a
play 72,attack: b, release: 50, amp: a
play 74,attack: b, release: 50, amp: a
sleep 50
end
end
end
live_loop :boom, delay: 8 do
with_fx :reverb, room: 0.8, mix: 0.7 do
use_synth :bass_foundation
play (ring, :g2,:g2,:c3,:c1).tick, amp: 1.5, release: 1.5
sleep (ring, 0.5,0.5,0.5,2.5).look
end
end
with_fx :reverb, room: 0.9, mix: 1 do
live_loop :piano, delay: 16 do
with_fx :reverb, room: 0.9, mix: 1 do
with_fx :flanger, phase: 0.5, stereo_invert_wave: 1 do
use_synth :dull_bell
play 86, release: 10, attack: 0.4, attack_level: 0.3, amp: 0.2
sleep 10
end
end
end
live_loop :ryth, delay: 24 do
cue :round
sample :loop_breakbeat, beat_stretch: 2
sleep 2
end
end