xxxxxxxxxx
22
let font;
function preload() {
font = loadFont('assets/Inconsolata.otf');
// the source for this was this: https://www.fontsquirrel.com/fonts/inconsolata
// which was linked to on the p5.js site
}
function setup() {
createCanvas(100, 100, WEBGL);
textFont(font);
textSize(32);
textAlign(CENTER, CENTER);
}
function draw() {
background(0);
rotateY(frameCount / 30);
text('p5*js', 0, 0);
describe('The text "p5*js" written in white and spinning in 3D.');
}