Advertisement
Guest User

Untitled

a guest
Apr 26th, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. live_loop :m do
  2. sleep 1
  3. end
  4.  
  5. live_loop :a do
  6. sync :m
  7. with_fx :echo, decay: 0.3, mix: rrand(0, 1) do
  8. sample :drum_bass_hard
  9. end
  10. sleep 2
  11. end
  12.  
  13. live_loop :b do
  14. sync :a
  15. sleep 1
  16. sample :drum_snare_hard
  17. end
  18.  
  19. live_loop :c do
  20. sync :b
  21. sleep 0.5
  22. with_fx :echo, decay: 0.3, mix: rrand(0, 1) do
  23. sample :drum_snare_hard
  24. end
  25. end
  26.  
  27. live_loop :d do
  28. sync :m
  29. with_fx :octaver, mix: (line 0, 1).tick do
  30. 2.times do
  31. play 42, release: 0.4
  32. sleep 0.5
  33. end
  34. end
  35. end
  36.  
  37. live_loop :e do
  38. sync :a
  39. sample :drum_cymbal_open, rate: rrand(0.9, 1.1) if one_in 3
  40. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement