sonic-pi-challenge/snippets/bitkids_01.rb

19 строки
302 B
Ruby

# riff
live_loop :shaking_riff do
use_synth :mod_saw
use_synth_defaults attack: 0.5, release: 0.2 ,amp: 1
4.times do
play_chord ring(:E2,:A3)
sleep 1
end
4.times do
play_chord ring(:E3, :A3 ,:B3)
sleep 1
end
4.times do
play_chord ring(:E4,:B4)
sleep 1
end
end