Advertisement
Guest User

Untitled

a guest
Mar 28th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. define :f do
  2. sample :bd_808, amp: 4
  3. end
  4.  
  5. define :g do
  6. sample :ambi_piano
  7. end
  8.  
  9. live_loop :m do
  10. sleep 1
  11. end
  12.  
  13. live_loop :a do
  14. sync :m
  15. f
  16. end
  17.  
  18. live_loop :b do
  19. sync :m
  20. sleep 0.25
  21. method((ring :f, :g).choose).call
  22. end
  23.  
  24. live_loop :c do
  25. # sync :m
  26. play (ring 60, 57).stretch(5).tick, amp: 0.6, release: 0.12
  27. sleep 0.125
  28. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement