xxxxxxxxxx
20
var font;
async function setup() {
createCanvas(100, 100);
font = await loadFont(
'https://fonts.googleapis.com/css2?family=Sniglet:wght@100;200;400;800&display=swap'
); // FIND A CONTINUOUS FONT
}
function draw() {
background(255);
textFont(font);
textAlign(LEFT, TOP);
textSize(35);
textWeight(sin(millis() * 0.002) * 200 + 400);
fill(sin(millis() * 0.002) * 255,0,0);
text('p5*js', 0, 10);
}