Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support for chords when using Sequence, use nested arrays to use chords #1219

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion Tone/event/Sequence.ts
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,12 @@ export class Sequence<ValueType = any> extends ToneEvent<ValueType> {
sequence.forEach((value, index) => {
const eventOffset = index * (subdivision) + startOffset;
if (isArray(value)) {
this._rescheduleSequence(value, subdivision / value.length, eventOffset);
if (value.length === 1 && isArray(value[0])){
const startTime = new TicksClass(this.context, eventOffset, "i").toSeconds();
this._part.add(startTime, value.flat());
} else {
this._rescheduleSequence(value, subdivision / value.length, eventOffset);
}
} else {
const startTime = new TicksClass(this.context, eventOffset, "i").toSeconds();
this._part.add(startTime, value);
Expand Down