rsc3/doc/help/ugen/io/offset-out.help.scrbl

25 lines
448 B
Text
Raw Normal View History

2022-08-24 13:53:18 +00:00
#lang scribble/manual
@(require (for-label racket))
@title{(offset-out bufferindex inputs)}
2022-08-28 10:27:01 +00:00
2022-08-24 13:53:18 +00:00
output signal to a bus, the sample offset within the bus is kept
exactly. This ugen is used where sample accurate output is needed.
2022-08-28 10:27:01 +00:00
@racketblock[
2022-08-24 13:53:18 +00:00
(audition
(mrg2 (offset-out 0 (impulse ar 5 0))
(out 0 (mul (sin-osc ar 60 0) 0.1))))
2022-08-28 10:27:01 +00:00
]
2022-08-24 13:53:18 +00:00
2022-08-28 10:27:01 +00:00
@racketblock[
2022-08-24 13:53:18 +00:00
(audition
(mrg2 (out 0 (impulse ar 5 0))
(out 0 (mul (sin-osc ar 60 0) 0.1))))
2022-08-28 10:27:01 +00:00
]
2022-08-24 13:53:18 +00:00