adding my sonic pi filegit status

This commit is contained in:
tas09009 2020-12-09 14:15:52 -05:00
Родитель c8737ebda1
Коммит d5d7109173
1 изменённых файлов: 31 добавлений и 0 удалений

31
snippets/tas09009_01.rb Normal file
Просмотреть файл

@ -0,0 +1,31 @@
in_thread(name: :scale) do
4.times do
use_synth :piano
play 52
sleep 0.5
use_synth :beep
play 47
sleep 0.5
play 43
sleep 0.5
play 59
sleep 0.5
end
end
in_thread(name: :sound1) do
4.times do
sleep 1
play sample :drum_bass_hard
sleep 1
end
end
in_thread(name: :sound2) do
4.times do
use_synth :dpulse
play 43, attack: 0.3, sustain: 1, release: 0.7, amp: 0.5
sleep 2
end
end