Advertisement
Guest User

Untitled

a guest
Feb 25th, 2017
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. live_loop :m do
  2. sleep 1
  3. end
  4.  
  5. live_loop :k do
  6. sync :m
  7. with_fx :echo, phase: (ring 0.33, 0.66).tick do
  8. sample :bd_sone
  9. end
  10. end
  11.  
  12. live_loop :b do
  13. # sync :m
  14. use_synth :tb303
  15. play 42, release: 0.1, amp: 0.6, pan: (ring -0.5, 0.5).stretch(2).tick
  16. sleep 0.125
  17. end
  18.  
  19. live_loop :mel do
  20. sync :m
  21. use_synth :blade
  22. with_fx :slicer, phase: 0.125 do
  23. c = (ring 54, 54, 61).stretch(2).tick
  24. play chord(c, :minor), attack: 2, release: 0.2, amp: 1.2
  25. end
  26. sleep 2
  27. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement