Fix example code to match new BasicOptical.pde

This commit is contained in:
Matt 2019-10-29 13:50:07 -04:00 committed by GitHub
parent aaf65c3a9b
commit c5e20a5e47
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ import soundtrack.optical.*;
SoundtrackOptical soundtrack;
String soundtrackFile = "./data/barking.wav";
String soundtrackFile = "../../data/barking.wav";
int dpi = 2400;
float volume = 1.0;
String type = "dual variable area";
@ -30,7 +30,7 @@ String pitch = "long";
boolean positive = true;
void setup() {
size(213, 620);
size(213, 620, P2D);
frameRate(24);
soundtrack = new SoundtrackOptical(this, soundtrackFile, dpi, volume, type, pitch, positive);
}