I've got a fader which I'm using to select a sample (out of 101 samples).
It's handy to drag the fader quickly up one end or to the middle but with 101 settings it is fiddly to try and select a setting precisely.
I've tried creating Incrementing and Decrementing buttons to nudge the fader up or down by 1. Everything I've tried so far will increment and decrement the fader's value but effectively disables the fader to be used directly.
I tried using the SoundToGlobalController with Value parameter like:
!Fader + (!Increment switchedOn) min: 101
I wondered if that was being continuously evaluated and constantly setting the fader which is why I couldn't move it. So I then tried using the MultiplexableSoundToGlobalController with these parameters:
GeneratedEvent !Fader
ActiveWhen !Increment switchedOn
Value (!Fader + 1) min: 101
And this seemed to do the same - made it impossible to move the fader directly.
Is it possible?