[sounds]: Added obtain sound and Sonic Pi files

This commit is contained in:
corner 2020-04-13 13:08:31 +02:00
parent 8bae2ac12f
commit 4e2928bd7f
3 changed files with 28 additions and 0 deletions

BIN
res/sounds/obtain.wav Normal file

Binary file not shown.

View File

@ -0,0 +1,4 @@
# Welcome to Sonic Pi
##| sample :drum_tom_hi_hard, release: 0.5
play 54, release: 0.25, amp: 4, pitch: -3

24
res/sounds/ruby/obtain.rb Normal file
View File

@ -0,0 +1,24 @@
# Welcome to Sonic Pi
use_synth :subpulse
s = 60
with_fx :reverb do
with_fx :echo, mix: 0.5, phase: 0.05, decay: 0.2 do
with_fx :sound_out_stereo do
5.times do
play s, release: 0.2
sample :elec_ping, release: 0.3
sample :tabla_tun1, finish: 0.1, release: 0.1, amp: 0.25
s = s + 5
sleep 0.2
end
end
end
end