mirror of
https://github.com/Tonejs/Tone.js
synced 2024-11-15 08:17:07 +00:00
adding categories
This commit is contained in:
parent
97cdc5bf07
commit
affe2e75de
2 changed files with 2 additions and 0 deletions
|
@ -22,6 +22,7 @@ export interface AutoFilterOptions extends LFOEffectOptions {
|
|||
* const autoFilter = new AutoFilter("4n").toDestination().start();
|
||||
* // route an oscillator through the filter and start it
|
||||
* const oscillator = new Oscillator().connect(autoFilter).start();
|
||||
* @category Effect
|
||||
*/
|
||||
export class AutoFilter extends LFOEffect<AutoFilterOptions> {
|
||||
|
||||
|
|
|
@ -15,6 +15,7 @@ export type AutoPannerOptions = LFOEffectOptions;
|
|||
* const autoPanner = new AutoPanner("4n").toDestination().start();
|
||||
* // route an oscillator through the panner and start it
|
||||
* const oscillator = new Oscillator().connect(autoPanner).start();
|
||||
* @category Effect
|
||||
*/
|
||||
export class AutoPanner extends LFOEffect<AutoPannerOptions> {
|
||||
|
||||
|
|
Loading…
Reference in a new issue