Search found 113 matches
- Tue Apr 13, 2021 10:20 am
- Forum: Monkey Business Audio
- Topic: Update: Sequencer Bundle
- Replies: 0
- Views: 8
Update: Sequencer Bundle
Hello everyone, I've just updated my Sequencer Bundle . Sequencer Bundle Icon.png The following changes have been applied: New module background images Input jacks are dark, output jacks are bright Added " Reset " button and output jack to Tempo Clock Changed " SMPL " inputs and output to " DUR " on...
- Mon Apr 12, 2021 5:26 pm
- Forum: Voltage Modular
- Topic: How to import presets
- Replies: 1
- Views: 48
Re: How to import presets
Hi James, in VM Standalone, click on the gear icon located in the top bar to open the settings dialog. 1 - Settings icon in VM Standalone.png Locate the Preset Folder in the "General" tab. 2 - Preset path.png Now open a file explorer and navigate to the preset folder path. There you should find a fo...
- Sat Apr 10, 2021 10:58 pm
- Forum: Voltage Modular
- Topic: Poly channel selection
- Replies: 2
- Views: 74
Re: Poly channel selection
Hi Jason, you can think of poly voices as an array of slots, e.g. if polyphony is set to 8, your array has 8 slots. A pointer initially points to the first slot. If you press a key, this key will be put into the slot the pointer points to and the pointer will move on to the next slot. If you release...
- Wed Feb 24, 2021 12:04 pm
- Forum: Voltage Modular
- Topic: "Hide Manufacturers" function in store suggestion
- Replies: 35
- Views: 2862
Re: "Hide Manufacturers" function in store suggestion
Proposal: How about adding an "Invert Search" checkbox to the store, so you only get results that do not match your selected criteria?
- Mon Feb 01, 2021 11:01 pm
- Forum: Module Designer
- Topic: Hoping for TABS in Designer
- Replies: 9
- Views: 394
Re: Hoping for TABS in Designer
You can use the SetVisible(boolean isVisible) method to switch visibility of GUI elements, i.e. create two toggle buttons in one toggle group (your tab selectors), which turn visibility of certain elements on or off, depending on what you want to see on each tab.
- Mon Feb 01, 2021 3:31 pm
- Forum: DCO-106 Polyphonic Synthesizer
- Topic: How do I save a custom (user) bank outside of DCO 106
- Replies: 2
- Views: 125
Re: How do I save a custom (user) bank outside of DCO 106
Hi blu, I don't actually own the DCO-106, but I own the module for VM and the MG-1 Plus and I suppose the preset handling is done in the same way as in the DCO-106. If not, please ignore this post ;) Click on the settings icon (the gear icon in the top row) and select the "General" tab. There you wi...
- Fri Jan 29, 2021 2:55 pm
- Forum: Monkey Business Audio
- Topic: New module release: (Poly) Unisonify and Unison Bundle
- Replies: 0
- Views: 168
New module release: (Poly) Unisonify and Unison Bundle
Hi everyone, as you might have noticed, I've released some new modules and a new bundle, all dedicated to creating unison voices. Unisonify Create unison voices the easy way The Unisonify Bundle consists of two modules: Unisonify Pre and Unisonify Post . Unisonify Pre takes pitch CV input and sends ...
- Fri Jan 29, 2021 10:58 am
- Forum: Module Designer
- Topic: Save arrays with preset - GetStateInformation?
- Replies: 5
- Views: 306
Re: Save arrays with preset - GetStateInformation?
I found some information in the Cherry Audio documentation here: https://docs.cherryaudio.com/voltage-module-designer/module-functions-and-variables The section on GetStateInformation() and SetStateInformation(byte[] stateInfo) kind of explains the basic idea behind these two methods and gives some ...
- Wed Jan 27, 2021 11:23 pm
- Forum: Module Designer
- Topic: How to implement TubePreamp
- Replies: 7
- Views: 356
Re: How to implement TubePreamp
Glad I could help. I don't have a patreon, but you can always buy some of my modules or bundles if you like 
https://store.cherryaudio.com/manufactu ... ness-audio
Cheers,
Martin

https://store.cherryaudio.com/manufactu ... ness-audio
Cheers,
Martin
- Wed Jan 27, 2021 6:58 pm
- Forum: Module Designer
- Topic: How to implement TubePreamp
- Replies: 7
- Views: 356
Re: How to implement TubePreamp
If there's math involved, can that be included in the notify method, also? For example, case Knob_Changed: { if (component == driveKnob) { driveValue.SetValue(doubleValue); hp1Value.SetValue(doubleValue*300) t00b1.SetDrive(driveValue.GetSmoothValue()); hp1.SetCutoff(hp1Value.GetSmoothValue()); } } ...