12 lines
364 B
Scheme
12 lines
364 B
Scheme
;; (offset-out bufferindex inputs)
|
|
|
|
;; output signal to a bus, the sample offset within the bus is kept
|
|
;; exactly. This ugen is used where sample accurate output is needed.
|
|
|
|
(audition
|
|
(mrg2 (offset-out 0 (impulse ar 5 0))
|
|
(out 0 (mul (sin-osc ar 60 0) 0.1))))
|
|
|
|
(audition
|
|
(mrg2 (out 0 (impulse ar 5 0))
|
|
(out 0 (mul (sin-osc ar 60 0) 0.1))))
|