Advertisement
Guest User

Untitled

a guest
Mar 29th, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. define :r do
  2. rrand(0, 1)
  3. end
  4.  
  5. live_loop :m do
  6. sleep 1
  7. end
  8.  
  9. live_loop :a do
  10. sync :m
  11. with_fx :echo, phase: 0.125, decay: 0.2 do
  12. sample :drum_bass_hard
  13. end
  14. end
  15.  
  16. live_loop :b do
  17. sync :a
  18. sleep 0.5
  19. sample :drum_snare_hard
  20. end
  21.  
  22. live_loop :c do
  23. sync :m
  24. sleep 0.25
  25. use_synth :fm
  26. with_fx :octaver, sub_amp: r, sub_sub_amp: r, super_amp: r do
  27. 3.times do
  28. play 48, release: 0.3
  29. sleep 0.25
  30. end
  31. end
  32. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement