for Synthedit.
Wishlist: 1-16 steps, potis for tune, mute-buttons and up/down/randome direction
i have tested David Haupt modules and have seen CK-modules, but there is not
what i search for
Any suggestions ? Thanks in advantage
Yes !! Thanks that is the right one.Nielzie wrote:Do you mean something like WOK CLOCKWorK?
It's made in SynthEdit so I guess the developer might have some useful info for you about what kind of modules to use

BFunku: are these rar files? no suffix, and couldn't open here.BFunKu wrote:Here's 17 different step-sequencer prefabs for SE. You might need some extra 3rd party(Non-Stock)modules for some of them though? But anyway here they are.
http://www.savefile.com/dl/85RJGUFV
Here's 12 more step-sequencer prefabs.
http://www.savefile.com/dl/5842JXUG
think i get it: the gate+clock AND is there to push the seq to step2, etc.spacedad wrote:if you have a look at mine,you'll see that the second step is the first,there's a note explaining too.
then it's tight.
Code: Select all
if (clock >= 0.2f){
if (step == 1) result1 = input1;
if (step == 2) result1 = input2;
if (step == 3) result1 = input3;
if (step == 4){result1 = input4;step = stepReset;}
step++;
}
Code: Select all
if (clock >= 0.2f){
if (step == 1){
for (int n = 0; n == noteLength; n++)
result1 = input1;
}
if (step == 2){
for (int n = 0; n == noteLength; n++)
result1 = input2;
}
if (step == 3){
for (int n = 0; n == noteLength; n++)
result1 = input3;
}
if (step == 4){
for (int n = 0; n == noteLength; n++){
result1 = input4;step = stepReset;
}
}
step++;
}
Submit: News, Plugins, Hosts & Apps | Advertise @ KVR | Developer Account | About KVR / Contact Us | Privacy Statement
© KVR Audio, Inc. 2000-2026