mirror of
https://github.com/Tonejs/Tone.js
synced 2024-11-16 00:27:58 +00:00
lowering meter size
to increase performance
This commit is contained in:
parent
c21e5758d8
commit
c712219198
1 changed files with 1 additions and 1 deletions
|
@ -41,7 +41,7 @@ define(["../core/Tone", "../component/Analyser", "../core/AudioNode"], function(
|
|||
* @private
|
||||
* @type {Tone.Analyser}
|
||||
*/
|
||||
this.input = this.output = this._analyser = new Tone.Analyser("waveform", 1024);
|
||||
this.input = this.output = this._analyser = new Tone.Analyser("waveform", 256);
|
||||
};
|
||||
|
||||
Tone.extend(Tone.Meter, Tone.AudioNode);
|
||||
|
|
Loading…
Reference in a new issue