// Example by Krister Olsson
import krister.Ess.*;
void setup() {
size(256,200);
// start up Ess
Ess.start(this);
}
void draw() {
}
// we are done, clean up Ess
public void stop() {
Ess.stop();
super.stop();
}
Description
Disposes of all AudioChannels, AudioStreams, and AudioInputs and shuts down Ess. Must be called before an applet or application exits. For details on how to use Ess.stop() in a draw() sketch see the examples on the Ess examples page.