rsc3/doc/examples/ugen/oscillators/blip.help.scm

12 lines
309 B
Scheme
Raw Normal View History

2022-08-24 13:53:18 +00:00
(import (rsc3))
(audition (out 0 (mul (blip ar 440 200) 0.15)))
;; Modulate frequency
(let ((f (x-line kr 20000 200 6 remove-synth)))
(audition (out 0 (mul (blip ar f 100) 0.2))))
;; Modulate number of harmonics.
(let ((h (line kr 1 100 20 remove-synth)))
(audition (out 0 (mul (blip ar 200 h) 0.2))))