Browse Source

Update Autinn.

pull/905/head
rl2939 1 month ago
parent
commit
a3779576a2
3 changed files with 16 additions and 2 deletions
  1. +1
    -1
      plugins/Autinn
  2. +1
    -1
      plugins/Makefile
  3. +14
    -0
      plugins/plugins.cpp

+ 1
- 1
plugins/Autinn

@@ -1 +1 @@
Subproject commit bc880d9d8fb59016de61e3253aff2b543d7bb665
Subproject commit 3bd00a2a3ac08b4832fe577b3d0312478f6e2cf2

+ 1
- 1
plugins/Makefile View File

@@ -531,7 +531,7 @@ MINIPLUGIN_FILES += AudibleInstruments/eurorack/stmlib/utils/random.cc

PLUGIN_FILES += $(wildcard Autinn/src/*.cpp)

AUTINN_CUSTOM = Chord Vibrato
AUTINN_CUSTOM = Chord Vibrato Snare

# --------------------------------------------------------------
# Axioma


+ 14
- 0
plugins/plugins.cpp View File

@@ -106,6 +106,7 @@ extern Model* modelBlank;
*/
#define modelChord modelAutinnChord
#define modelVibrato modelAutinnVibrato
#define modelSnare modelAutinnSnare
extern Model* modelJette;
extern Model* modelFlora;
extern Model* modelOxcart;
@@ -130,8 +131,14 @@ extern Model* modelFil;
extern Model* modelNap;
extern Model* modelMelody;
extern Model* modelChord;
extern Model* modelKicker;
extern Model* modelSnare;
extern Model* modelCoil;
extern Model* modelGeiger;
extern Model* modelSaw2;
#undef modelChord
#undef modelVibrato
#undef modelSnare

// Axioma
#include "Axioma/src/plugin.hpp"
@@ -1554,6 +1561,7 @@ static void initStatic__Autinn()
{
#define modelChord modelAutinnChord
#define modelVibrato modelAutinnVibrato
#define modelSnare modelAutinnSnare
p->addModel(modelAmp);
p->addModel(modelDeadband);
p->addModel(modelBass);
@@ -1578,8 +1586,14 @@ static void initStatic__Autinn()
p->addModel(modelNap);
p->addModel(modelMelody);
p->addModel(modelChord);
p->addModel(modelKicker);
p->addModel(modelSnare);
p->addModel(modelCoil);
p->addModel(modelGeiger);
p->addModel(modelSaw2);
#undef modelChord
#undef modelVibrato
#undef modelSnare
}
}



Loading…
Cancel
Save