Offset the entire chart by a number of beats.
Shifts all note start/end times and all events (standard and extended) in every layer of every line by beatOffset. This is useful for inserting an intro or adjusting chart sync.
beatOffset
The RPE chart (modified in place).
Beats to shift (positive = push later, negative = pull earlier).
The chart (for chaining).
// Add 4 beats of silence at the startoffsetChart(chart, 4);// Trim 2 beats from the beginning (dangerous if notes exist before beat 2!)offsetChart(chart, -2); Copy
// Add 4 beats of silence at the startoffsetChart(chart, 4);// Trim 2 beats from the beginning (dangerous if notes exist before beat 2!)offsetChart(chart, -2);
Offset the entire chart by a number of beats.
Shifts all note start/end times and all events (standard and extended) in every layer of every line by
beatOffset. This is useful for inserting an intro or adjusting chart sync.