processing library cassette

Solutions on MaxInterview for processing library cassette by the best coders in the world

showing results for - "processing library cassette"
Neele
24 Apr 2017
1import cassette.audiofiles.SoundFile;
2
3SoundFile sound;
4
5void setup()
6{
7  sound = new SoundFile(this, "sound.wav");
8}
9
10void draw()
11{
12  if(playSound)
13  {
14    sound.Play();
15  }
16}