Can we please get a single knob cut plugin??
The one we have now basically requires 2 hands to operate!!
We asked Scott many many times if this could be changed but he never did.
The one we have now basically requires 2 hands to operate!!
We asked Scott many many times if this could be changed but he never did.
Posted Thu 12 Sep 19 @ 8:31 pm
It kind of already exists if you use the cut color fx (on the filter knob)
Posted Fri 13 Sep 19 @ 12:32 pm
Ok cool, I’ll try it.
Could you tell me the script to add it to a button on my controller, please??
Could you tell me the script to add it to a button on my controller, please??
Posted Sat 14 Sep 19 @ 12:29 am
depends what you want, how many buttons you got going spare...
effect_colorfx 'cut'
effect_colorfx 'filter'
effect_colorfx 'cut' ? effect_colorfx 'filter' : effect_colorfx 'cut'
effect_colorfx 'cut'
effect_colorfx 'filter'
effect_colorfx 'cut' ? effect_colorfx 'filter' : effect_colorfx 'cut'
Posted Sat 14 Sep 19 @ 1:41 am
locodog wrote :
depends what you want, how many buttons you got going spare...
effect_colorfx 'cut'
effect_colorfx 'filter'
effect_colorfx 'cut' ? effect_colorfx 'filter' : effect_colorfx 'cut'
effect_colorfx 'cut'
effect_colorfx 'filter'
effect_colorfx 'cut' ? effect_colorfx 'filter' : effect_colorfx 'cut'
So I'd like it mapped the CRUSH button on the DDJ RX.
I tried it but lost the filter and Pitch. Maybe you could take a look at the mapping and see what I did wrong??
Posted Sat 14 Sep 19 @ 2:36 am
An odd mapping on the RX, looks like it isn't upto date with colorfx
I'd do this
for the colorfx mapping
var 'hwmixer' ? nothing : filter
colorfxCrush
filter_selectcolorfx 'cut' ? filter_selectcolorfx 'distortion' : filter_selectcolorfx 'cut'
colorfxFilter
filter_selectcolorfx 'filter' ? filter_selectcolorfx 'loop roll' : filter_selectcolorfx 'filter'
colorfxNoise
filter_selectcolorfx 'noise' ? filter_selectcolorfx 'mobius' : filter_selectcolorfx 'noise'
colorfxPitch
filter_selectcolorfx 'pitch' ? filter_selectcolorfx 'spiral' : filter_selectcolorfx 'pitch'
effect_select colorfx 'cut'
Led mappings might need a tweek,
if shift + button gives you a new mapping entry you could have another 8,
I'd do this
for the colorfx mapping
var 'hwmixer' ? nothing : filter
colorfxCrush
filter_selectcolorfx 'cut' ? filter_selectcolorfx 'distortion' : filter_selectcolorfx 'cut'
colorfxFilter
filter_selectcolorfx 'filter' ? filter_selectcolorfx 'loop roll' : filter_selectcolorfx 'filter'
colorfxNoise
filter_selectcolorfx 'noise' ? filter_selectcolorfx 'mobius' : filter_selectcolorfx 'noise'
colorfxPitch
filter_selectcolorfx 'pitch' ? filter_selectcolorfx 'spiral' : filter_selectcolorfx 'pitch'
effect_select colorfx 'cut'
Led mappings might need a tweek,
if shift + button gives you a new mapping entry you could have another 8,
Posted Sat 14 Sep 19 @ 3:22 am
None of that works...
I lose everything.
I lose everything.
Posted Sat 14 Sep 19 @ 4:16 am
You did the dial as well as the buttons?
Posted Sat 14 Sep 19 @ 4:22 am
Ok that worked but even if I don't have a color button pressed if I turn my color knob it activates an fx.
I don't want it to do anything unless i press a button.
I don't want it to do anything unless i press a button.
Posted Sat 14 Sep 19 @ 4:30 am
pick the filter in that case
Posted Sat 14 Sep 19 @ 4:32 am
I’m not following you??
So right now, when I press the color filter button and turn the color knob the filter is what I hear.
But when I hit the color filter button off and turn the color knob it is controlling the filter roll.
And so on and so on with the other buttons.
So right now, when I press the color filter button and turn the color knob the filter is what I hear.
But when I hit the color filter button off and turn the color knob it is controlling the filter roll.
And so on and so on with the other buttons.
Posted Sat 14 Sep 19 @ 4:38 am
centre the dial to turn it off
Posted Sat 14 Sep 19 @ 4:46 am
Yeah I get that but I don’t want them to do anything when the button is pressed off.
Basically I don’t want that secondary function.
Ok so I’m assuming I change it to this,
filter_selectcolorfx 'cut' ? Nothing : filter_selectcolorfx 'cut'
Basically I don’t want that secondary function.
Ok so I’m assuming I change it to this,
filter_selectcolorfx 'cut' ? Nothing : filter_selectcolorfx 'cut'
Posted Sat 14 Sep 19 @ 4:50 am
filter is default, you want a dial ready to do nothing?
*Edit* no need to query
filter_selectcolorfx 'cut'
*Edit* no need to query
filter_selectcolorfx 'cut'
Posted Sat 14 Sep 19 @ 4:53 am
I’m uploading a video to show what is happening.
Posted Sat 14 Sep 19 @ 4:58 am
Posted Sat 14 Sep 19 @ 5:12 am