Advertisement
anushaz

gibber1

Jul 28th, 2015
252
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. //random stuff for gibber 2015
  2. Notation.on()
  3. Notation.phaseIndicatorstyle='flash'
  4.  
  5. y = Drums('x*o*x*o-')
  6.  
  7. a = FM('bass').note.seq(0,[1/8, 1/4, 1/16, 1/8, 1/16, 1/2])
  8. a.amp *= 1.5
  9.  
  10. b = FM('bass').note.seq([1,2,3,1],1/4)
  11. b.amp *=5
  12.  
  13. //c = Synth2('pad2').chord.seq(rndi(0,10,3))
  14.  
  15. d = Synth('rhodes').chord.seq([[0,2,4]],1/2)
  16. d.amp *= 3
  17.  
  18. //e = Synth('bleep')
  19. //.note.seq ([], 1/8)
  20. //e.note.values.transpose.seq(1,1)
  21. //e.note.values.reverse()
  22.  
  23. f = Mono('bass').note.seq([0,7,14,21,28,14],1/4)
  24.  
  25. g = FM('bass').note.seq([1,0,5,7,2],[1/8,1/16])
  26. g.amp *= 3
  27. g.fx.add(Crush({bitDepth:5}))
  28.  
  29. //h = Synth()
  30. //h.note.seq( [0,1,2,3], [1/4,1/8])
  31.  
  32. i = FM('bass').note.seq([1,2,3,4],1/4)
  33. i.fx.add (Distortion())
  34. i.fx.add(delay(1/9),.5)
  35.  
  36. Master.fadeOut(2)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement