Advertisement
Guest User

Untitled

a guest
Feb 20th, 2019
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. with_fx :echo do
  2. live_audio :in, pan: -1
  3. end
  4.  
  5. with_fx :distortion, distort: 0.8 do
  6. live_audio :in2, pan: 1
  7. end
  8.  
  9. live_loop :one do
  10. sample :bd_haus
  11. sleep 0.5
  12. end
  13.  
  14. live_loop :two do
  15. sync :one
  16. sleep 0.25
  17. use_synth :fm
  18. play 48, release: 0.5, pan: -0.2
  19. end
  20.  
  21. live_loop :three do
  22. sync :one
  23. sleep 0.25
  24. use_synth :fm
  25. play (ring 48, 47, 45, 45).stretch(2).tick, release: 0.5, pan: 0.2
  26. end
  27.  
  28. live_loop :four do
  29. sync :one
  30. sample :misc_burp if one_in 5
  31. sample :drum_cymbal_closed
  32. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement