Add multiple notes at once to a line.
Each entry in beats can be either:
beats
sharedOptions
[beat, options]
The RPE chart (modified in place).
Target line index.
Array of beats or [beat, options] tuples.
Options applied to all notes (overridden by per-note options).
Array of note indices in insertion order.
// Add 4 taps at beats 1, 2, 3, 4addNotes(chart, 0, [1, 2, 3, 4], { type: 1 });// Mix of taps and a flickaddNotes(chart, 0, [ [1, { type: 1, positionX: -200 }], [2, { type: 1, positionX: 200 }], [3, { type: 3 }],]); Copy
// Add 4 taps at beats 1, 2, 3, 4addNotes(chart, 0, [1, 2, 3, 4], { type: 1 });// Mix of taps and a flickaddNotes(chart, 0, [ [1, { type: 1, positionX: -200 }], [2, { type: 1, positionX: 200 }], [3, { type: 3 }],]);
Add multiple notes at once to a line.
Each entry in
beatscan be either:sharedOptionsfor all fields)[beat, options]tuple (per-note options overridesharedOptions)