xxxxxxxxxx
30
// This simple sketch tests the buttons for the
// creative coding cabinets.
//
// Jared Donovan 2024.
let img;
function preload() {
img = loadImage("images/icon.png");
}
function setup() {
createCanvas(img.width, img.height);
textSize(20);
textAlign(LEFT, TOP);
}
function draw() {
background(255, 220, 150);
image(img, 0, 0);
let m = 64;
text(`KEY: ${key}
KEYCODE: ${keyCode}`, m, m, width - m, height - m);
}