1. You have four different modes, two of them the device and the sequencing mode allow to play instruments with the pads and control macros/device parameters via the touch faders. The device mode naturally offers more pads for playing than the sequencing mode. In the device mode the faders are used to control the device parameters while in the sequencing mode you can use them to control macros. And I wanted that to be just the opposite, because the macros are a lot more customizable than the parameters. That means device parameters only control one thing at a time and don´t offer a way to set a limited value-range of a connected control.
So I wrote the support about that and asked which lines of the script I would need to change in order to change the fader function and that is their answer:
I tried and it works and I am happy with that.Changing the device page to control macros instead of parameters is really easy.
Go to the appropriate script (either
/Applications/Bitwig Studio.app/Contents/Resources/ControlSurfaceScripts/livid/BASE.control.js
or
/Applications/Bitwig Studio.app/Contents/Resources/ControlSurfaceScripts/livid/BASEII.control.js
)
Then go to line 625, which looks like:
device._mode.set_value(0);
and change the '0' to a '1'.
Of course, if you update your scripts from our repo or update bitwig, this change might be lost.
2. After touch does not work right now in Bitwig. The problem seems to be that the BASEII sends polyphonic aftertouch, while Bitwigs unified modulation system only integrates "channel pressure aftertouch". So when I click on the --> AT symbol and link a certain amount of aftertouch to a parameter like the pitch it does not work so far. Altough the BASE sends its message the pitch does not change upon pressure changes. Currently the Livid support is contacting Bitwig support in order to make that possible and I am looking forward to the result. It s a pity however that Bitwigs code so far only allows for channel pressure aftertouch. Polyphonic aftertouch allows to play and hold a chord and If you then change the pressure on one of the pads the note of only that pad would be affected by the parameter linked to polyphonic aftertouch.
Channell pressure aftertouch however causes that all notes that are currently playing get affected by the parameter linked to channel pressure aftertouch. So its a bit more limited…
I hope that this is of interest for some folks here and I will keep you updated about the progress of that fix. Cheers, Ulli
