|
|
@@ -305,6 +305,9 @@ int gtg_default_theme = 1; |
|
|
|
int loadGtgPluginDefault(const char*, int) { return 1; } |
|
|
|
void saveGtgPluginDefault(const char*, int) {} |
|
|
|
|
|
|
|
// GoodSheperd |
|
|
|
#include "GoodSheperd/src/plugin.hpp" |
|
|
|
|
|
|
|
// GrandeModular |
|
|
|
#include "GrandeModular/src/plugin.hpp" |
|
|
|
|
|
|
@@ -590,8 +593,9 @@ Plugin* pluginInstance__FehlerFabrik; |
|
|
|
#ifdef WITH_FUNDAMENTAL |
|
|
|
Plugin* pluginInstance__Fundamental; |
|
|
|
#endif |
|
|
|
Plugin* pluginInstance__GrandeModular; |
|
|
|
Plugin* pluginInstance__GlueTheGiant; |
|
|
|
Plugin* pluginInstance__GoodSheperd; |
|
|
|
Plugin* pluginInstance__GrandeModular; |
|
|
|
Plugin* pluginInstance__HetrickCV; |
|
|
|
extern Plugin* pluginInstance__ImpromptuModular; |
|
|
|
Plugin* pluginInstance__ihtsyn; |
|
|
@@ -1460,6 +1464,23 @@ static void initStatic__GlueTheGiant() |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
static void initStatic__GoodSheperd() |
|
|
|
{ |
|
|
|
Plugin* const p = new Plugin; |
|
|
|
pluginInstance__GoodSheperd = p; |
|
|
|
|
|
|
|
const StaticPluginLoader spl(p, "GoodSheperd"); |
|
|
|
if (spl.ok()) |
|
|
|
{ |
|
|
|
p->addModel(modelHurdle); |
|
|
|
p->addModel(modelSEQ3st); |
|
|
|
p->addModel(modelStable16); |
|
|
|
p->addModel(modelStall); |
|
|
|
p->addModel(modelSwitch1); |
|
|
|
p->addModel(modelSeqtrol); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
static void initStatic__GrandeModular() |
|
|
|
{ |
|
|
|
Plugin* const p = new Plugin; |
|
|
@@ -2063,6 +2084,7 @@ void initStaticPlugins() |
|
|
|
initStatic__Fundamental(); |
|
|
|
#endif |
|
|
|
initStatic__GlueTheGiant(); |
|
|
|
initStatic__GoodSheperd(); |
|
|
|
initStatic__GrandeModular(); |
|
|
|
initStatic__HetrickCV(); |
|
|
|
initStatic__ImpromptuModular(); |
|
|
|