re-enable soundfont player

This commit is contained in:
Eric Rosenbaum 2016-11-21 16:00:59 -05:00
parent 27a7c545a1
commit 7aca02b89a

View file

@ -297,14 +297,13 @@ AudioEngine.prototype._getPitchRatio = function () {
AudioEngine.prototype.setInstrument = function (instrumentNum) {
this.instrumentNum = instrumentNum;
/*
return Soundfont.instrument(Tone.context, this.instrumentNames[instrumentNum]).then(
function (inst) {
this.instrument = inst;
this.instrument.connect(this.effectsNode);
}.bind(this)
);
*/
};
AudioEngine.prototype.clearEffects = function () {