mirror of
https://github.com/Tonejs/Tone.js
synced 2024-11-16 08:38:00 +00:00
fixed dep and doc
This commit is contained in:
parent
10e2acdea9
commit
d91f177fb5
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
define(["Tone/core/Tone", "Tone/signal/Threshold"], function(Tone){
|
||||
define(["Tone/core/Tone", "Tone/signal/Threshold", "Tone/signal/Add"], function(Tone){
|
||||
|
||||
/**
|
||||
* @class Output 1 if the signal is greater than the value, otherwise outputs 0
|
||||
|
@ -15,7 +15,7 @@ define(["Tone/core/Tone", "Tone/signal/Threshold"], function(Tone){
|
|||
this._gt = this.context.createWaveShaper();
|
||||
|
||||
/**
|
||||
* @type {WaveShaperNode}
|
||||
* @type {Tone.Threshold}
|
||||
* @private
|
||||
*/
|
||||
this._thresh = new Tone.Threshold(0.001);
|
||||
|
|
Loading…
Reference in a new issue