mirror of
https://github.com/Tonejs/Tone.js
synced 2024-11-16 00:27:58 +00:00
changing step time to 1 sample
This commit is contained in:
parent
68bb4faa31
commit
a5fceee69f
1 changed files with 1 additions and 1 deletions
|
@ -484,7 +484,7 @@ define(["../core/Tone", "../type/Type", "../core/AudioNode", "../core/Timeline"]
|
|||
if (after){
|
||||
this._events.cancel(after.time);
|
||||
} else {
|
||||
this._events.cancel(time + 1e-6);
|
||||
this._events.cancel(time + this.sampleTime);
|
||||
}
|
||||
} else if (after){
|
||||
//cancel the next event(s)
|
||||
|
|
Loading…
Reference in a new issue