changePan(noteID, pan, relative, immediate)
Description
Function to change the position of a certain note in the panorama.
Available in: Processor.
Arguments
noteID | The ID of the note you want to change. | |
---|---|---|
pan | The pan position in the range of -1.0 to 1.0 (relative = false ) or the value which is added (relative = true ). | |
relative | The value is added to the current amount, when set to true . The default is false . | boolean, optional |
immediate | The value is set instantaneously without controller smoothing, when set to true . The default is false . | boolean, optional |
Example
--pan notes depending on pitch --E3 = center, E2 = hard left, E4 = hard right function onNote(event) local pan = (event.note-64)/12 local id = postEvent(event) changePan(id, pan, false, true) end
See Also: onNote