5 background colors: default blue, dark blue, green, orange and red.


Download: Check the Blue Cat Audio page.


Any website we can link to?swindus wrote:Would be great.

Great! We'll be glad to publish your artwork when it's ready.Dayl wrote:Woah, I just read the skinning manual on your site. Nice indeed! very comprehensive and I see that I could probably get something done with this info.
I would split the skin design process in two parts:Dayl wrote: BTW, would this be a good introduction in to skin design? xml design is the standard isnt it?
The design isn't the problem its just the implementation.
It's possible in the version you have today (you need to create an intermediate parameter with +-12 dB range and link this parameter to the actual plugin parameter. I can send you an example if you wish later today), but if you wait a little bit it will be included in the next release (under development), together with graph zooming corresponding to the chosen value range.swindus wrote:One question: Is ther a way to limit the gain range lets say to -12 <-> +12?
An example would be nice.Blue Cat Audio wrote:It's possible in the version you have today (you need to create an intermediate parameter with +-12 dB range and link this parameter to the actual plugin parameter. I can send you an example if you wish later today), but if you wait a little bit it will be included in the next release (under development), together with graph zooming corresponding to the chosen value range.
Awesome! Is it now ok to be published?swindus wrote:Skin is finished. Download link is in the first post.
Here is an example for a single parameter. Let's say we have a knob connected to dsp.input1 and we want to change th erange to +/-12 dB. To do so, create a new parameter ("my_param") with the appropriate range, and make a connection between the two (a connection is a link in both directions):swindus wrote: An example would be nice.
Code: Select all
(...)
<!-- Declare the new param -->
<PARAM id="my_param" min="-12" max="12" default="0" unit="dB" name="gain"/>
<!-- Connection between the two -->
<PARAM_CONNECTION id1="my_param" id2="dsp.input1"/>
<!-- Connect the knob to the new parameter instead of dsp.input1-->
<CUS_PARAM_KNOB param_id="my_param" (...)
Skinning Manual wrote: PARAM_CONNECTION:
This element connects two parameters together. This means than whenever a parameter is changed, the other one follows it. It is stronger than two PARAM_LINK elements connecting both parameters because it ensures that both parameters keep the same value. This can be used to make a parameter constant or limited to a certain range for example.
Submit: News, Plugins, Hosts & Apps | Advertise @ KVR | Developer Account | About KVR / Contact Us | Privacy Statement
© KVR Audio, Inc. 2000-2026