xxxxxxxxxx
25
function setup() {
createCanvas(1200,1200);
//updateDate();
textSize(20);
textFont(font);
//noLoop(); // Since we're just drawing it, don't have to loop it
}
async function preload() {
font = loadFont("KomikaHand_revised.ttf");
fontBold = loadFont("Komika_Hand_Bold.ttf");
//data = await loadDataPromise();
//console.log(data);
// Just testing loading First Character:
//console.log("url: " + data.rows[0].obj["DRAWING URL"]); // prints the URL of the first object
//images.push(loadImage(data.rows[0].obj["DRAWING URL"]));
//console.log(images[0]);
}
function draw() {
background("#CF9FFF");
}