From d0c0c62c597d62ac7fed471a4069212d86a88692 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?VIS=CE=9BGE?= Date: Thu, 4 Jun 2026 15:17:30 +0300 Subject: [PATCH 1/2] Release Bassducker v1.0 --- Distortion/visagemsc_bassducker.jsfx | 69 ++++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 Distortion/visagemsc_bassducker.jsfx diff --git a/Distortion/visagemsc_bassducker.jsfx b/Distortion/visagemsc_bassducker.jsfx new file mode 100644 index 0000000..0874a70 --- /dev/null +++ b/Distortion/visagemsc_bassducker.jsfx @@ -0,0 +1,69 @@ +desc: Bassducker +author: VISΛGE +version: 1.0 +about: + # Bassducker + + Smarted ringmod sidechain and clip delta designed to make way for your bass. Just send it to channels 3 and 4 and dial anything you might need to. + +// Copyright © 2026 VISΛGE +// +// Permission is hereby granted, free of charge, to any person obtaining +// a copy of this software and associated documentation files (the “Software”), +// to deal in the Software without restriction, including without limitation +// the rights to use, copy, modify, merge, publish, distribute, sublicense, +// and/or sell copies of the Software, and to permit persons to whom the Software +// is furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +desc:Bassducker + +slider1:rm_int=0<0,1>AM Intensity (0-1) +slider2:clip_int=0<0,1>Clip Intensity (0-1) +slider3:in_gain=0<0,36>In Gain (dB) +slider4:sc_gain=0<0,36>SC Gain (dB) + +in_pin:Left +in_pin:Right +in_pin:Left SC +in_pin:Right SC +out_pin:Left +out_pin:Right + +@init + +@slider +in_mult = pow(10, (in_gain/20)); +sc_mult = pow(10, (sc_gain/20)); + + +@block + +@sample +spl0 *= in_mult; spl1 *= in_mult; +spl2 *= sc_mult; spl3 *= sc_mult; + +abs(spl0) > 1 ? spl0 = sign(spl0); +abs(spl1) > 1 ? spl1 = sign(spl1); +abs(spl2) > 1 ? spl2 = sign(spl2); +abs(spl3) > 1 ? spl3 = sign(spl3); + +spl0 = spl0 * (1 - (abs(spl2) * rm_int)); +spl1 = spl1 * (1 - (abs(spl3) * rm_int)); + +clip_inL = spl0 + (spl2 * clip_int); clip_inR = spl1 + (spl3 * clip_int); + +abs(clip_inL) > 1 ? clip_inL = sign(clip_inL); +abs(clip_inR) > 1 ? clip_inR = sign(clip_inR); + +spl0 = clip_inL - (spl2 * clip_int); +spl1 = clip_inR - (spl3 * clip_int); From f15801d8935a1b839ba31b919bc18d9eb38326e8 Mon Sep 17 00:00:00 2001 From: Christian Fillion Date: Fri, 5 Jun 2026 03:22:55 -0400 Subject: [PATCH 2/2] capitalize filename to match standard naming scheme + remove duplicate 'desc' tag --- .../{visagemsc_bassducker.jsfx => visagemsc_Bassducker.jsfx} | 2 -- 1 file changed, 2 deletions(-) rename Distortion/{visagemsc_bassducker.jsfx => visagemsc_Bassducker.jsfx} (99%) diff --git a/Distortion/visagemsc_bassducker.jsfx b/Distortion/visagemsc_Bassducker.jsfx similarity index 99% rename from Distortion/visagemsc_bassducker.jsfx rename to Distortion/visagemsc_Bassducker.jsfx index 0874a70..089160b 100644 --- a/Distortion/visagemsc_bassducker.jsfx +++ b/Distortion/visagemsc_Bassducker.jsfx @@ -25,8 +25,6 @@ about: // WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -desc:Bassducker - slider1:rm_int=0<0,1>AM Intensity (0-1) slider2:clip_int=0<0,1>Clip Intensity (0-1) slider3:in_gain=0<0,36>In Gain (dB)