12345678910111213141516171819202122232425262728 |
- #lang reader modmark_br.rkt
- # Patch Spec
- # Representing an approximation of
- # a 909 kick. Module specs are imported
- # but don't yet exist
- Title: Kick Drum
- # By default "./modules" is included in the module path
- ModuleDir "/home/swatson/Repos/modmark/"
- import Module::BlueLantern::AsteroidOperatorVCF
- import Module::MakeNoise::Maths
- import Module::ALM::TangleQuartet
- set AsteroidOperatorVCF.PluckSwitch = on
- set AsteroidOperatorVCF.Filter.position = 7
- set Maths.Cycle1Button = on
- set Maths.Rise1.position = 7
- set Maths.Fall1.position = 1
- set Maths.LogExp.position = 5
- set TangleQuartet.Level1.position = 5
- connect Maths.1f AsteroidOperatorVCF.FMod
- connect Maths.1f TangleQuartet.Level1
- connect AsteroidOperatorVCF.LPOD TangleQuartet.VCA1
|