/**
* Initialisation method used to build the objects that this instrument uses.
*/
public void createChain() {
Pluck plk = new Pluck(this, this.sampleRate, this.channels, this.feedback);
Volume vol = new Volume(plk);
StereoPan span = new StereoPan(vol);
Envelope env = new Envelope(span, new double[]{0.0, 1.0, 0.9, 1.0, 1.0, 0.0});
SampleOut sout;
if (output == RENDER) sout = new SampleOut(env);