[光敏性癫痫警告/画面不适警告] Rabbit Impact

sad_chords = [:a, :b, :b, :a, :c,
:a, :b, :b, :a, :c,
:a, :b, :b, :c, :c,
:a, :c, :b, :e, :a,
:a, :c, :b, :e, :e,
:a, :c,
]
think_chords = [:a, :c, :e, :a].shuffle
time = knit(0.5, 3) + [0.5, 1.5]
time += knit(0.5, 3) + [1, 1]
puts time
use_bpm 60
puts sad_chords
use_synth :pluck
use_synth_defaults attack: 0.01, sustain: 0.8
live_loop :recall do
with_fx :ping_pong, mix: 0.3, rep: 16 do
with_fx :krush, mix: 0.5, gain: 6, rep: 16 do
n= sad_chords.tick(:c)
#puts n
play think_chords.tick(:c2), release: 1, amp: 0.7 if spread(2, 7).tick
play n, release: time.look * 3
sleep time.tick(:t)
end
end
end
live_loop :drum do
sample :bd_haus
sleep 1
end