You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
437 B
16 lines
437 B
String[] controller = {"STOP", "REC", "BANK", "PATTERN"};
|
|
|
|
|
|
void printControllerStatus() {
|
|
fill(200);
|
|
text("PLAY/STOP:", 10, height-75);
|
|
text("REC/OVERDUB/ERASE:", 10, height-55);
|
|
text("BANK:", 10, height-35);
|
|
text("PATTERN/BPM/SWING:", 10, height-15);
|
|
|
|
fill(240);
|
|
text(controller[0], 180, height-75);
|
|
text(controller[1], 180, height-55);
|
|
text(controller[2], 180, height-35);
|
|
text(controller[3], 180, height-15);
|
|
}
|