Spacechild1 / vstplugin

VST plugin support for Pd and SuperCollider (mirror of https://git.iem.at/pd/vstplugin). If possible, use the issue tracker at https://git.iem.at/pd/vstplugin/-/issues.
Other
84 stars 6 forks source link

SimpleDecoder.vst3 "configuration" not accessible #11

Closed escuta closed 1 year ago

escuta commented 1 year ago

Dear devs, In SuperCollider, when the IEM "SimpleDecoder.vst3" plugin (from the IEM Plugin Suite) is opened via VSTPluginController, there is no option to load the speaker configuration file (a *.json file). At least not via the .gui method for the controller instance, only a list of "built in programs" and user presets. Sorry if I've missed something.

Spacechild1 commented 1 year ago

Hi, you can open the "native" plugin UI with the .editor method and load the config file from there. Then you can save the plugin state as a preset with .writeProgram and recall it later with .readProgram.

escuta commented 1 year ago

Fantastic. Thanks for your help.