mirror of
https://github.com/Tonejs/Tone.js
synced 2024-11-16 16:48:00 +00:00
connectSeries -> chain
This commit is contained in:
parent
6a5be56c4f
commit
79e0383ad6
1 changed files with 1 additions and 1 deletions
|
@ -115,7 +115,7 @@ define(["Tone/core/Tone", "Tone/source/Source"], function(Tone){
|
|||
this._source = this.context.createBufferSource();
|
||||
this._source.buffer = this._buffer;
|
||||
this._source.loop = true;
|
||||
this.connectSeries(this._source, this.output);
|
||||
this._source.connect(this.output);
|
||||
this._source.start(this.toSeconds(time));
|
||||
this._source.onended = this.onended;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue