MIDI Assignment in BIAS FX 2 Plugin in Logic Pro

To use the MIDI Assignment feature in the BIAS FX 2 plugin in Logic Pro. You'll need to set up the BIAS FX 2 plug and the Scripter on an Instrument track then send the signal from it to an audio track. 

 

 1. Launch Logic Pro and create a Software Instrument track.

 

 

2. Click on the Instrument track and insert MIDI FX -> Scripter.

SC.gif

 

 

3. Click 'Open Script in Editor', and copy & paste the following to Script Editor and click 'Run Script'.

Screen Recording 2024-01-10 at 11.40.13.gif

---Begin Here (Do not copy)---

var cc;
function HandleMIDI(e) {
e.send();
e.trace();
}
function ParameterChanged(param, value) {
cc.number = param + 1;
cc.value = value;
cc.send(), cc.trace();
}
var PluginParameters = [];
cc = new ControlChange();
cc.channel = 1;
for (i = 1; i < 20; i++) {
PluginParameters.push({
name: ("CC " + i + " "),
type: "lin",
defaultValue: 0,
numberOfSteps: 127,
minValue: 0,
maxValue: 127
});
}
---End Here (Do not copy)---


4. Create an audio track.
 
 
5. Go back to the instrument track and add the BIAS FX 2 plugin as an 'Instrument'.
Open BIAS FX 2 Plugin and click on Side Chain in the up-right corner, then select the audio track we created in step 4.
 
6. Navigate to MIDI Settings -> MIDI Control Assignments or simply right-click on the amp and select 'MIDI Assignment' to assign the MIDI signal to the behavior you'd like to control.
 
 
7. Open the Automation feature and you should be able to send MIDI to the MIDI Assignment in BIAS FX 2 plugin.
Screen Recording 2024-01-08 at 13.55.42.gif
Was this article helpful?
0 out of 0 found this helpful
Need More Help? Contact Us