diff --git a/Tone/component/LFO.js b/Tone/component/LFO.js index ac12b6c7..d5cc933b 100644 --- a/Tone/component/LFO.js +++ b/Tone/component/LFO.js @@ -260,6 +260,21 @@ function(Tone){ } }); + /** + * Mute the output. + * @memberOf Tone.LFO# + * @type {Boolean} + * @name mute + */ + Object.defineProperty(Tone.LFO.prototype, "mute", { + get : function(){ + return this._oscillator.mute; + }, + set : function(mute){ + this._oscillator.mute = mute; + } + }); + /** * Returns the playback state of the source, either "started" or "stopped". * @type {Tone.State}