mirror of
https://github.com/Tonejs/Tone.js
synced 2024-12-26 11:33:09 +00:00
Merge pull request #940 from marcelblum/patch-1
Analyser constructor bugfix for ignored smoothing option
This commit is contained in:
commit
b1526c3578
1 changed files with 1 additions and 0 deletions
|
@ -79,6 +79,7 @@ export class Analyser extends ToneAudioNode<AnalyserOptions> {
|
|||
// set the values initially
|
||||
this.size = options.size;
|
||||
this.type = options.type;
|
||||
this.smoothing = options.smoothing;
|
||||
}
|
||||
|
||||
static getDefaults(): AnalyserOptions {
|
||||
|
|
Loading…
Reference in a new issue