Nice sounding DS instrument, however, I found that the knob doesn’t work.
In the code, I found that there are actually two knobs defined. If you are handy with a text editor, in this file “Orchestral Evo Pad.dspreset”
you can change this:
<tab name="main">
<labeled-knob >
<binding type="effect" level="instrument" position="0" parameter="FX_FILTER_FREQUENCY"/>
</labeled-knob>
<labeled-knob>
<binding type="effect" level="instrument" position="1" parameter="FX_REVERB_WET_LEVEL"
factor="0.01"/>
</labeled-knob>
</tab>
to this:
<tab name="main">
<labeled-knob x="10" y="10" label="FILTER" textColor="FFFFFFFF" type="float" minValue="0" maxValue="1" value="1" >
<binding type="effect" level="instrument" position="0" parameter="FX_FILTER_FREQUENCY" translation="table" translationTable="0,60;0.5,2000;1,22000"/>
</labeled-knob>
<labeled-knob x="150" y="10" label="REVERB" textColor="FFFFFFFF" type="float" minValue="0" maxValue="1" value="0.5">
<binding type="effect" level="instrument" position="1" parameter="FX_REVERB_WET_LEVEL"
factor="0.01"/>
</labeled-knob>
</tab>
I believe that will fix the issue.