xxxxxxxxxx
46
let font;
function preload(){
font = loadFont('./Ribes-Light.otf');
}
function setup() {
createCanvas(400, 400, WEBGL);
frameRate(20)
textFont(font);
textStyle(BOLD)
textAlign(CENTER, CENTER)
}
function draw() {
background('#69CA0A');
translate(-5,-30)
textSize(50)
rotateY(frameCount / 30);
fill('white')
text('spin', 0, 0)
textSize(100)
rotateY(width - frameCount / 20);
fill('white')
text('spin', 0, 0)
textSize(150)
rotateY(frameCount / 10);
fill('white')
text('spin', 0, 0)
textSize(200)
rotateY(width - frameCount / 30);
fill('white')
text('spin', 0, 0)
}
function keyPressed() {
if (key === 's') {
saveGif('spin', 6);
}
}