mirror of
https://github.com/Tonejs/Tone.js
synced 2024-12-26 03:23:11 +00:00
Merge pull request #1154 from pritam-chowdhury/fix-constructor-initialize-issue
1149 - fixed missing initialization for humanize attribute
This commit is contained in:
commit
9b15a9204c
1 changed files with 2 additions and 1 deletions
|
@ -58,7 +58,8 @@ export class Loop<Options extends LoopOptions = LoopOptions> extends ToneWithCon
|
|||
loop: true,
|
||||
loopEnd: options.interval,
|
||||
playbackRate: options.playbackRate,
|
||||
probability: options.probability
|
||||
probability: options.probability,
|
||||
humanize: options.humanize,
|
||||
});
|
||||
|
||||
this.callback = options.callback;
|
||||
|
|
Loading…
Reference in a new issue