SynthLab SDK
Selecting Cores at Run-time

Module Core Selection

When the user selects a new module core string, you call a function on the SynthModule to select that core. Usually this is done through an interfacing function on the engine object, which must then call the selection function on all of its voices so the same core is selected throughout. There are two functions for selecting a core, either for the default core, or for a particular core of interest.

// --- select a module core based on index [0, 3]
virtual bool selectModuleCore(uint32_t index);
// --- select the default core
virtual bool selectDefaultModuleCore();
//


synthlab_4.png