10-17-2021, 08:07 AM
Code:
//script to remove volumeless notes
song.notes.forEach(
note => {
if (song.settings.instruments[note.instrument] && song.settings.instruments[note.instrument].volume === 0) {
song.removeNote(note)
console.info('keep spamming this script until it stops saying this')
}
if (note.volume === 0) {
song.removeNote(note)
console.info('keep spamming this script until it stops saying this')
}
}
)
here is a script to remove volumeless notes, how you use it is:
- load a sequence
- go into edit mode, press f12
- go to "console"
- copy paste the script
- (optional) dont use download midi in the top, you need to press the icon next to the cloud and upload button (drop down)