The full modulation depth is +-96 semitones, which is +-8 octaves, which allows the knob to have a decent range and not be too twitchy. So if you have the low pass filter barely letting through audio at 100 hz then at full modualation the LFO or Env will open the filter up to 100*2^8 = 25 khz, which is plenty enough range to get what you need done without making the knob too sensitive to dial in something reasonable.nrosko wrote:That still does not allow you to modulate the full range.sqigls wrote:use the sensitivity?
I'm sure its supposed to be this way but I'm interested in the reason.
Also is there a way to save oversampling settings? Saving preset as default does not save the setting & means i have to select higher oversampling every time i open the plugin.
If you reduce the cutoff to 0hz then 0*2^8 = 0, so this is a convenient way to clamp down the filter to block audio without having to also reduce the modulation amounts as well.
When you choose "save as default" then the oversampling should also be saved. There may be a problem with the permissions on the settings file stopping the defaults from being saved, for example if you don't have write permission on the file. The settings file is located just one folder back from the preset folder, so if you choose "Show Presets Folder" then you can navigate and find the settings file. This is a plain text "xml" file that you can easily edit with any text editor:
Code: Select all
<?xml version="1.0" encoding="UTF-8"?>
<Cytomic Product="The Drop" Version="0.9.18">
<Settings Version="0.9.18">
<Tuple Key="SingleProgram" Value="true"/>
<Tuple Key="ExternalSidechain" Value="true"/>
<Tuple Key="CheckIo" Value="false"/>
<Tuple Key="ShowPeakNeedle" Value="false"/>
<Tuple Key="OverSampleRealtime" Value="Off"/>
<Tuple Key="OverSampleRender" Value="Off"/>
<Tuple Key="CurrentPath" Value="/Users/andy/Library/Application Support/Cytomic/The Drop/Presets/test a.tdp"/>
</Settings>
</Cytomic>
Code: Select all
<Tuple Key="OverSampleRealtime" Value="Off"/>
<Tuple Key="OverSampleRender" Value="Off"/>
Code: Select all
<Tuple Key="OverSampleRealtime" Value="x2"/>
<Tuple Key="OverSampleRender" Value="x8"/>
I need to check again with what Apple and Microsoft are up to with their latest operating system with permissions, they keep on changing things so sorry for the hassle!
