Advertisement
Guest User

Untitled

a guest
Apr 27th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. live_loop :m do
  2. sleep 1
  3. end
  4.  
  5. live_loop :a do
  6. sync :m
  7. play 54
  8. end
  9.  
  10. live_loop :b do
  11. sync :m
  12. play knit(47, 4, 49, 4, 42, 8).tick
  13. end
  14.  
  15. live_loop :c do
  16. sync :m
  17. with_fx :echo, phase: 0.6 do
  18. sample :bd_fat
  19. end
  20. end
  21.  
  22. live_loop :d do
  23. sync :m
  24. d = rrand(0.2, 2)
  25. play scale(54, :bartok).choose, release: d
  26. sleep d - 0.1
  27. end
  28.  
  29. live_loop :e do
  30. sync :m
  31. use_synth :tb303
  32. play 42, release: 4, cutoff: rrand(60, 90), amp: (line 0.2, 0.8).tick
  33. sleep 4
  34. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement