Old 03-22-2023, 12:53 PM   #1
SNJUK2
Human being with feelings
 
SNJUK2's Avatar
 
Join Date: Feb 2017
Location: Zhytomyr,Ukraine
Posts: 449
Default JSFx Bitwig Modulators

Hi.
New JS Effect Btw Steps Modulator

----------------------------------------------------------------------------------------
New JS Effect Btw Math Modulator

Youtube : https://www.youtube.com/watch?v=Njd-...el=BitwigGuide

----------------------------------------------------------------------------------------
New JS Effect Btw Toggle Select 4 Modulator

Youtube : https://www.youtube.com/watch?v=IRS9...el=BitwigGuide


----------------------------------------------------------------------------------------
New JS Effect Btw Pitch_12 Modulator

Youtube : https://www.youtube.com/watch?v=xfJl...el=BitwigGuide


----------------------------------------------------------------------------------------
New JS Effect Abl 8 Chain Selector

Youtube : https://www.youtube.com/watch?v=fIYjbnxoR28&t=630s

Attached Files
File Type: zip Math Modulator.zip (425 Bytes, 191 views)
File Type: zip Btw Pitch_12 Modulator(27.08.23).zip (1.3 KB, 169 views)
File Type: zip Btw Toggle Select 4 Modulator(31.08.23).zip (1.4 KB, 162 views)
File Type: zip Abl 8 Chain Selector(22.10.23).zip (2.8 KB, 100 views)
File Type: zip Steps Modulator(30.11.23).zip (6.8 KB, 74 views)

Last edited by SNJUK2; 11-30-2023 at 11:45 AM.
SNJUK2 is offline   Reply With Quote
Old 03-22-2023, 05:32 PM   #2
Vagelis
Human being with feelings
 
Vagelis's Avatar
 
Join Date: Oct 2017
Location: Larisa, Greece
Posts: 3,827
Default

oh looks great man, thanks a lot for doing these modulators, will check them as soon as possible! Btw any chance to be added in reapack?
Vagelis is offline   Reply With Quote
Old 03-22-2023, 11:19 PM   #3
future-bit
Human being with feelings
 
Join Date: May 2008
Posts: 117
Default

Great stuff, but how is it possible to snap a midi-note step and not to the grid?
future-bit is offline   Reply With Quote
Old 03-23-2023, 11:24 AM   #4
Zeno
Human being with feelings
 
Zeno's Avatar
 
Join Date: Sep 2018
Location: HH
Posts: 919
Default

Hey, SNJUK2! Nice tool, thanks for that!
I made some changes for preference reasons.
If you like it, feel free to add it to your jsfx. If not, just ignore it.
Here it is: Steps Modulator.txt



Changelog:
Code:
# Various small position changes of objects and readouts for better GUI symmetry
# Changed bipolar button mouse interaction from LMB/RMB to simple LMB switch
- Removed LMB/RMB readout for bipolar button
- Removed gfx_drawnumber(CtVar[num_steps]) and gfx_drawstr("%")
+ Added gfx_drawstr(sprintf(#,"%.0f %%",CtVar[num_steps]))
+ Roundrect and triangular background shading for the steps slider
Attached Images
File Type: png Modulator mod.png (13.7 KB, 2445 views)

Last edited by Zeno; 03-23-2023 at 11:34 AM.
Zeno is offline   Reply With Quote
Old 03-23-2023, 11:33 AM   #5
Suzuki
Human being with feelings
 
Suzuki's Avatar
 
Join Date: Jul 2022
Location: Japan
Posts: 812
Default

Thanks for this! Maybe it would be a good idea to remove unwanted space from desc.
Suzuki is offline   Reply With Quote
Old 03-23-2023, 01:22 PM   #6
SNJUK2
Human being with feelings
 
SNJUK2's Avatar
 
Join Date: Feb 2017
Location: Zhytomyr,Ukraine
Posts: 449
Default

Hi Zeno. No problem
I want make all sliders in @gfx ,but have some problems with mouse control:
when click mouse and drag other knobs under mouse changes

Update : Add rate slider (in header)
SNJUK2 is offline   Reply With Quote
Old 03-23-2023, 04:53 PM   #7
Zeno
Human being with feelings
 
Zeno's Avatar
 
Join Date: Sep 2018
Location: HH
Posts: 919
Default

Quote:
Originally Posted by SNJUK2 View Post
Hi Zeno. No problem
I want make all sliders in @gfx ,but have some problems with mouse control
Here's a simple fix for your mouse click.
This will at least fix your random-button behavior.

Change this:
Code:
mouseHold = mouse_cap & 1;
mouseClick = mouseHold - lastCap;
lastCap = mouseHold;
to that:
Code:
mouseHold = mouse_cap & 1;
mouseClick = mouseHold && !lastCap;
lastCap = mouseHold;
Do you mean the steps slider?
It currently works like an XY pad, but only for the X axis.
It's cool actually, but could use a little position indicator.
Otherwise, I don't know exactly what you mean.
The knob does not have any mouse code to check so far.
Zeno is offline   Reply With Quote
Old 03-25-2023, 11:19 AM   #8
Broojacker
Human being with feelings
 
Join Date: Apr 2016
Location: Ukraine
Posts: 49
Default

Hi SNJUK2, another great plugin.
Please, make more space between step velocity and step count.
Is it possible to add a smooth step button?
And maybe you should make one thread for all your plugins, it will be easier to follow.
I often use your LFO, thanks.
__________________
soundcloud
Broojacker is offline   Reply With Quote
Old 03-26-2023, 01:16 AM   #9
SNJUK2
Human being with feelings
 
SNJUK2's Avatar
 
Join Date: Feb 2017
Location: Zhytomyr,Ukraine
Posts: 449
Default

Quote:
Originally Posted by Broojacker View Post
Hi SNJUK2, another great plugin.
Please, make more space between step velocity and step count.
Is it possible to add a smooth step button?
And maybe you should make one thread for all your plugins, it will be easier to follow.
I often use your LFO, thanks.
Hi. Yes i know. I will make normal mouse control late, have no time.and smooth
SNJUK2 is offline   Reply With Quote
Old 03-26-2023, 06:55 AM   #10
dna598
Human being with feelings
 
Join Date: Jul 2007
Posts: 726
Default

Hi this looks great. Def add smooth slider tho.
dna598 is online now   Reply With Quote
Old 03-26-2023, 05:07 PM   #11
akademie
Human being with feelings
 
Join Date: Mar 2007
Posts: 4,018
Default

What about adding a MIDI triggering (by NoteOn messages)?
(and optional quantize to nearest 1/1, 1/2, 1/4 or 1/8 of the measure...)
akademie is offline   Reply With Quote
Old 04-07-2023, 06:00 PM   #12
PitchSlap
Human being with feelings
 
PitchSlap's Avatar
 
Join Date: Jan 2008
Location: Vancouver, BC
Posts: 3,795
Default

Looks really interesting.
It would be great to have in Reapack for automatic updates.
__________________
FRs: v5 Media Explorer Requests, Global Quantization, Session View
Win10 Pro 64-bit, Reaper 6(x64), AMD 3950x, Aorus X570 Master, 64GB DDR4 3600, PowerColor Red Devil 5700XT, EVO 970 2TB, 10TB HD, Define R6
PitchSlap is offline   Reply With Quote
Old 04-09-2023, 06:40 AM   #13
SNJUK2
Human being with feelings
 
SNJUK2's Avatar
 
Join Date: Feb 2017
Location: Zhytomyr,Ukraine
Posts: 449
Default

Update (in header)
+ Add Smooth

When effect is finished then add to Reapack
About Midi triggering - you can make it with Midi link of effect bypass by midi note
(for any effect)

Last edited by SNJUK2; 04-09-2023 at 06:46 AM.
SNJUK2 is offline   Reply With Quote
Old 04-10-2023, 03:53 AM   #14
akademie
Human being with feelings
 
Join Date: Mar 2007
Posts: 4,018
Default

Quote:
Originally Posted by SNJUK2 View Post
...<snip>
About Midi triggering - you can make it with Midi link of effect bypass by midi note
(for any effect)
But
1) Bypas is not a triggering (I suppose)
2) for the purpose of MIDI triggering, one-shot (not repeating) mode
and
3) MIDi link option assigns to specific note (e.g. C2), while by triggering I mean when one plays any note, like a melody, when the Modulator JSFX would retrigger with any new NoteOn MIDI message.

Never mind.

Last edited by akademie; 04-10-2023 at 04:37 AM. Reason: added one-shot feature info
akademie is offline   Reply With Quote
Old 04-10-2023, 04:32 AM   #15
UknownSource
Human being with feelings
 
UknownSource's Avatar
 
Join Date: May 2020
Posts: 434
Default

looks great!

How can I use last touch knob to link?
__________________
"FX-Container"

Last edited by UknownSource; 04-10-2023 at 04:39 AM.
UknownSource is offline   Reply With Quote
Old 04-10-2023, 12:44 PM   #16
SNJUK2
Human being with feelings
 
SNJUK2's Avatar
 
Join Date: Feb 2017
Location: Zhytomyr,Ukraine
Posts: 449
Default

Quote:
Originally Posted by akademie View Post
But
Hi. Ok I will try later

Quote:
Originally Posted by UknownSource
How can I use last touch knob to link?
Hi. I hide modulator slider and this just like last moved slider
I use Script: BuyOne_Link two FX parameters via parameter modulation. for link parameters
SNJUK2 is offline   Reply With Quote
Old 08-17-2023, 01:04 PM   #17
SNJUK2
Human being with feelings
 
SNJUK2's Avatar
 
Join Date: Feb 2017
Location: Zhytomyr,Ukraine
Posts: 449
Default

Hi. Add new effects in header :
+ Math Modulator
+ Toggle Buttons Modulator
SNJUK2 is offline   Reply With Quote
Old 08-21-2023, 09:58 AM   #18
SNJUK2
Human being with feelings
 
SNJUK2's Avatar
 
Join Date: Feb 2017
Location: Zhytomyr,Ukraine
Posts: 449
Default

Hi. Toggle Battons Modulator update in header - fix automation bug.

Last edited by SNJUK2; 08-27-2023 at 04:21 AM.
SNJUK2 is offline   Reply With Quote
Old 08-27-2023, 04:20 AM   #19
SNJUK2
Human being with feelings
 
SNJUK2's Avatar
 
Join Date: Feb 2017
Location: Zhytomyr,Ukraine
Posts: 449
Default

Hi.New JS Effect Bitwig Pitch_12 Modulator - in header.
Btw Toggle Buttons Modulator - update
+ Add select mode

Last edited by SNJUK2; 08-27-2023 at 12:50 PM.
SNJUK2 is offline   Reply With Quote
Old 08-31-2023, 08:44 AM   #20
JonLinnarson
Human being with feelings
 
JonLinnarson's Avatar
 
Join Date: Jul 2020
Posts: 725
Default

These are perfect! Between these and BryanChi's FX Device, you can copy almost all of Bitwig's most important features in Reaper

Thanks a lot!
JonLinnarson is offline   Reply With Quote
Old 08-31-2023, 01:52 PM   #21
SNJUK2
Human being with feelings
 
SNJUK2's Avatar
 
Join Date: Feb 2017
Location: Zhytomyr,Ukraine
Posts: 449
Default

Hi. Toggle Buttons Modulator - update (in header):
+ Rename at Btw Toggle Select 4 Modulator
+ Add Toggle ,Select ,Fill modes
SNJUK2 is offline   Reply With Quote
Old 08-31-2023, 01:59 PM   #22
tonalstates
Human being with feelings
 
tonalstates's Avatar
 
Join Date: Jun 2020
Posts: 666
Default

Awesome, I'll def try this out asap thank you! You should consider reapack too
tonalstates is offline   Reply With Quote
Old 09-17-2023, 10:24 AM   #23
SNJUK2
Human being with feelings
 
SNJUK2's Avatar
 
Join Date: Feb 2017
Location: Zhytomyr,Ukraine
Posts: 449
Default

Hi. Update Btw Steps Modulator (in header)
+ Fix Modulator rec env in Env write mode
SNJUK2 is offline   Reply With Quote
Old 09-17-2023, 01:48 PM   #24
giohappy
Human being with feelings
 
Join Date: Apr 2020
Posts: 28
Default

SNJUK2 I suspect your latest update to Steps modulator has a small regression. You can see the diff in the fix I applied to my own copy.
giohappy is offline   Reply With Quote
Old 09-18-2023, 11:27 AM   #25
SNJUK2
Human being with feelings
 
SNJUK2's Avatar
 
Join Date: Feb 2017
Location: Zhytomyr,Ukraine
Posts: 449
Default

Hi. Update Btw Steps Modulator (in header)
+ Add Modulator Automation Rec (for rec Env in write mode)
+ Add Hold mode (phase controls the steps)

@giohappy Not everything turned out to be so simple. In last version of effect modulation was always last touched,i add rec button.
SNJUK2 is offline   Reply With Quote
Old 10-17-2023, 09:00 AM   #26
Wayne Kerr
Human being with feelings
 
Join Date: Aug 2023
Posts: 9
Default

Hi, Snjuk, I just tried out your plugins but have noticed that the Step Modulator isn't saving the step states when reopening a project or even saving a preset. Is that how it's behaving right now or is it something on my end?

Thanks and props for these tho!
Wayne Kerr is offline   Reply With Quote
Old 10-17-2023, 11:57 AM   #27
SNJUK2
Human being with feelings
 
SNJUK2's Avatar
 
Join Date: Feb 2017
Location: Zhytomyr,Ukraine
Posts: 449
Default

Hi, Wayne Kerr. Yes you is right.I will try to solve this problem.
SNJUK2 is offline   Reply With Quote
Old 10-18-2023, 09:59 AM   #28
SNJUK2
Human being with feelings
 
SNJUK2's Avatar
 
Join Date: Feb 2017
Location: Zhytomyr,Ukraine
Posts: 449
Default

Hi. Update Btw Steps Modulator (in header)
+ Add CC out
+ Fix bug with preset saving
SNJUK2 is offline   Reply With Quote
Old 10-19-2023, 01:45 PM   #29
SNJUK2
Human being with feelings
 
SNJUK2's Avatar
 
Join Date: Feb 2017
Location: Zhytomyr,Ukraine
Posts: 449
Default

Hi. New JS Fx Abl 8 Chain Selector (in header)
Its chain selector from Ableton Rack.
At first run you see big window - push 1 button at trigger ,resize fx as you need and save as fx chain.
Req https://forum.cockos.com/showthread.php?t=283497
----Link wet fx1 parameter to C1 parameter of plugin and bypass to B1.
B sliders are hidden, but you see them in list when linking
B sliders set to 0 only if C=0 (if link bypass to wet bypass = 0 when
wet = 49% and wet not work if bypassed
------Good luck


SNJUK2 is offline   Reply With Quote
Old 10-21-2023, 09:11 AM   #30
Wayne Kerr
Human being with feelings
 
Join Date: Aug 2023
Posts: 9
Default

Quote:
Originally Posted by SNJUK2 View Post
Hi. Update Btw Steps Modulator (in header)
+ Add CC out
+ Fix bug with preset saving
Thanks, works great!
Wayne Kerr is offline   Reply With Quote
Old 10-23-2023, 06:26 AM   #31
Ozman
Human being with feelings
 
Join Date: Feb 2015
Posts: 755
Default

This would be great with the combined GUI of the FX Devices script, to really encompass the Bitwig and Ableton look.
Ozman is offline   Reply With Quote
Old 11-28-2023, 05:26 PM   #32
SNJUK2
Human being with feelings
 
SNJUK2's Avatar
 
Join Date: Feb 2017
Location: Zhytomyr,Ukraine
Posts: 449
Default

Hi. Update (in header)
JSfx Btw Steps Modulator
+ Add gfx UI
+ clean code
SNJUK2 is offline   Reply With Quote
Old 11-28-2023, 11:36 PM   #33
UknownSource
Human being with feelings
 
UknownSource's Avatar
 
Join Date: May 2020
Posts: 434
Default

it looks so good
can these be found in reapack too ?
__________________
"FX-Container"
UknownSource is offline   Reply With Quote
Old 11-29-2023, 03:29 PM   #34
Modular
Human being with feelings
 
Modular's Avatar
 
Join Date: Oct 2009
Location: Manchester
Posts: 282
Default

Wow, this is great. Will you be making an MSEG envelope modulator?
__________________
www.fortymileswest.co.uk
Modular is offline   Reply With Quote
Old 11-29-2023, 04:00 PM   #35
SNJUK2
Human being with feelings
 
SNJUK2's Avatar
 
Join Date: Feb 2017
Location: Zhytomyr,Ukraine
Posts: 449
Default

Quote:
Originally Posted by Modular View Post
Wow, this is great. Will you be making an MSEG envelope modulator?
Hi. https://forum.cockos.com/showthread.php?t=276121
SNJUK2 is offline   Reply With Quote
Old 11-30-2023, 07:12 AM   #36
Sexan
Human being with feelings
 
Sexan's Avatar
 
Join Date: Jun 2009
Location: Croatia
Posts: 4,689
Default

Snjuky push them all to reapack
Sexan is offline   Reply With Quote
Old 11-30-2023, 11:16 AM   #37
SNJUK2
Human being with feelings
 
SNJUK2's Avatar
 
Join Date: Feb 2017
Location: Zhytomyr,Ukraine
Posts: 449
Default

Hi. Update (in header)
JSfx Btw Steps Modulator
+ Add Trigger Modes Play,Hold,Note
+ Change run and rate algorhythms
+ Add Midi note filter
+ Add Reset button
+ Add hiden freqX (let it be, possible that someone will need it)

Test it and if all is Ok , I push it in Reapack
SNJUK2 is offline   Reply With Quote
Old 11-30-2023, 11:40 AM   #38
Vagelis
Human being with feelings
 
Vagelis's Avatar
 
Join Date: Oct 2017
Location: Larisa, Greece
Posts: 3,827
Default

Hi there, it works well here and I like a lot. One thing that it's a bit different than usual is that we draw on mouse area with right click and not with left, maybe this could be reversed?
Another small thing that I've noticed is that when drawing faster on mouse area it doesn't trigger the Y-axis instantly. But overall it's in a very good shape and I think it's ready for Reapack
Vagelis is offline   Reply With Quote
Old 11-30-2023, 11:53 AM   #39
SNJUK2
Human being with feelings
 
SNJUK2's Avatar
 
Join Date: Feb 2017
Location: Zhytomyr,Ukraine
Posts: 449
Default

I was change draw on right mouse because conflict with knobs.
Draw slow
Precise adjustment by mouse wheel
SNJUK2 is offline   Reply With Quote
Old 11-30-2023, 12:25 PM   #40
Vagelis
Human being with feelings
 
Vagelis's Avatar
 
Join Date: Oct 2017
Location: Larisa, Greece
Posts: 3,827
Default

Just noticed this, it looks that the playhead is not in sync with project. Maybe there's an issue with syncing to bpm, or with transport play/stop?

Vagelis is offline   Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -7. The time now is 01:14 AM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.