I’d prefer to make it so that TAL Reverb-4 would always boot up with specific settings, specific to Renoise.
in the Init*. settings.
I’m wondering, how does one do that? I could script the presets myself, sure, and boot them up with a shortcut, but I’m wondering, is there no nicer way of doing it, i.e. “Renoise specific preset settings loaded by default, when effect is added to dsp chain”
SOLVED
The solution for this was to write your own shortcuts that load the TrackDSP effect (native, AU, VST) and then, after loading, change the plugin parameters to your preferred ones.
As an example, TAL Reverb-4 would be
if s.selected_track.devices[checkline].name=="AU: TAL-Togu Audio Line: TAL Reverb 4 Plugin" then
s.selected_track.devices[checkline].parameters[2].value=0.0 -- delay
s.selected_track.devices[checkline].parameters[3].value=0.30 -- High Cut
s.selected_track.devices[checkline].parameters[4].value=0.88 -- Size
s.selected_track.devices[checkline].parameters[5].value=0.9 -- Diffuse
s.selected_track.devices[checkline].parameters[6].value=1 -- Dry
s.selected_track.devices[checkline].parameters[7].value=0.4 -- low cut
s.selected_track.devices[checkline].parameters[9].value=0.7 -- wet
end
But this opens up a larger question, how to set a specific plug-in instrument settings programmatically.