xxxxxxxxxx
18
function preload() {
lemon = loadFont('assets/lemon.ttf'); // Load our TrueType font.
}
function setup() {
createCanvas(200, 200); // Set the canvas size.
textFont(lemon); // Set the font to be our lemon.ttf loaded above.
textSize(width / 8); // Set the font size.
textAlign(CENTER, CENTER); // Centered horizontal and vertical allignment.
fill(255); // Draw the text in white.
}
function draw() {
background(0); // Clear the background in black.
translate(width / 2, height / 2); // Translate to the middle of the canvas.
rotate(frameCount / 100); // Rotate based on the frame count.
text('upsidedown', 0, 0); // Display our text string.
}