rsc3/doc/examples/textures/_scm/jmcc-tremulate.scm

14 lines
362 B
Scheme
Raw Normal View History

2022-08-24 13:53:18 +00:00
; tremulate (jmcc) #1
(withSc3List
(list
(postProcessUgen 2 (lambda (i) (CombN i 0.1 0.1 1)))
(xfadeTextureUgen
(list 0.5 2 +inf.0)
(let* ((f (Rand 500 900))
(o (FSinOsc (Mul f (asMce '(1 1.2 1.5 1.8))) 0))
(r (RandN 4 30 90))
(a (Max 0 (Mul (LFNoise2 r) 0.1)))
(l (RandN 4 -1 1)))
(Mix (Pan2 o l a))))))