xxxxxxxxxx
21
let font;
function preload() {
font = loadFont('assets/Inconsolata-Black.otf');
// the source for this was this: https://github.com/googlefonts/Inconsolata/blob/master/fonts/otf/Inconsolata-Black.otf
}
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.');
}