mirror of
https://github.com/Tonejs/Tone.js
synced 2024-12-28 12:33:12 +00:00
7429604d3d
addresses #609
63 lines
1.7 KiB
TypeScript
63 lines
1.7 KiB
TypeScript
import { Panner } from "../component/channel/Panner";
|
|
import { optionsFromArguments } from "../core/util/Defaults";
|
|
import { LFOEffect, LFOEffectOptions } from "./LFOEffect";
|
|
import { Frequency } from "../core/type/Units";
|
|
|
|
export interface AutoPannerOptions extends LFOEffectOptions {
|
|
channelCount: number;
|
|
}
|
|
|
|
/**
|
|
* AutoPanner is a [[Panner]] with an [[LFO]] connected to the pan amount.
|
|
* [Related Reading](https://www.ableton.com/en/blog/autopan-chopper-effect-and-more-liveschool/).
|
|
*
|
|
* @example
|
|
* // create an autopanner and start it
|
|
* const autoPanner = new Tone.AutoPanner("4n").toDestination().start();
|
|
* // route an oscillator through the panner and start it
|
|
* const oscillator = new Tone.Oscillator().connect(autoPanner).start();
|
|
* @category Effect
|
|
*/
|
|
export class AutoPanner extends LFOEffect<AutoPannerOptions> {
|
|
|
|
readonly name: string = "AutoPanner";
|
|
|
|
/**
|
|
* The filter node
|
|
*/
|
|
readonly _panner: Panner;
|
|
|
|
/**
|
|
* @param frequency Rate of left-right oscillation.
|
|
*/
|
|
constructor(frequency?: Frequency);
|
|
constructor(options?: Partial<AutoPannerOptions>);
|
|
constructor() {
|
|
|
|
super(optionsFromArguments(AutoPanner.getDefaults(), arguments, ["frequency"]));
|
|
const options = optionsFromArguments(AutoPanner.getDefaults(), arguments, ["frequency"]);
|
|
|
|
this._panner = new Panner({
|
|
context: this.context,
|
|
channelCount: options.channelCount
|
|
});
|
|
// connections
|
|
this.connectEffect(this._panner);
|
|
this._lfo.connect(this._panner.pan);
|
|
this._lfo.min = -1;
|
|
this._lfo.max = 1;
|
|
}
|
|
|
|
static getDefaults(): AutoPannerOptions {
|
|
return Object.assign(LFOEffect.getDefaults(), {
|
|
channelCount: 1
|
|
});
|
|
}
|
|
|
|
dispose(): this {
|
|
super.dispose();
|
|
this._panner.dispose();
|
|
return this;
|
|
}
|
|
}
|
|
|