Skip to content

Instantly share code, notes, and snippets.

@charlieroberts
Created February 27, 2012 02:44
Show Gist options
  • Save charlieroberts/1920926 to your computer and use it in GitHub Desktop.
Save charlieroberts/1920926 to your computer and use it in GitHub Desktop.
Effects in Gibber
s = Synth();
seq = Seq(["A4", "D4", "E4", "B4"], _4);
seq.slave(s);
// add one or many fx at the same time
s.fx.add( Trunc(5) );
s.fx.add( Delay(_16), Reverb() );
// remove a named effect
s.fx.remove("Trunc");
// create an effect as a variable and insert at a certain position
r = Ring();
s.fx.insert(r, 0);
// remove fx at a certain position
s.fx.remove(0);
//remove all fx
s.fx.remove();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment