Change Note - In a Drum Instrument.
-
Currently Hise can Remap a note?
I have a Kick -- Key Red -- on the note C1 but I want to move it to D1 using a button to change the position and color that instrument will now sound on.
If possible, could someone give me an example?
-
@Moidb You probably don't need to move the sample, just redirect the incoming note.
if (Message.getNoteNumber() == 38) Message.setNoteNumber(36);
Or probably better, use
Message.setTransposeAmount()
but you'll need to calculate the interval.