Advertisement
Guest User

Untitled

a guest
Nov 23rd, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. # Welcome to Sonic Pi v2.9
  2. use_bpm 35
  3.  
  4. define :hauntF do
  5. use_synth :subpulse
  6. uncomment do
  7. 2.times do
  8. play_pattern [:c3,:d3,:e3,:c3,:r]
  9. end
  10. end
  11. uncomment do
  12. 2.times do
  13. play_pattern [:e3,:f3,:g3,:r]
  14. end
  15. 2.times do
  16. play_pattern_timed [:g3,:a3,:g3,:f3,:e3,:r,:c3,:r], 0.5
  17. end
  18. end
  19. 2.times do
  20. play_pattern [:c3,:g2,:c3,:r]
  21. end
  22. end
  23.  
  24. sample :ambi_haunted_hum
  25. sleep sample_duration :ambi_haunted_hum
  26. hauntF
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement