xxxxxxxxxx
40
function setup() {
createCanvas(400, 400);
textAlign(CENTER, CENTER);
textSize(100);
stroke('white');
strokeWeight(2);
noFill();
angleMode(DEGREES);
}
function draw() {
background(0);
push();
translate((width - (frameCount * 2) % (width / 40)) - 320, 350);
text('S', 0, 0);
pop();
push();
translate((width - (frameCount * 2.5) % (width / 40)) - 260, 350);
text('H', 0, 0);
pop();
push();
translate((width - (frameCount * 2) % (width / 40)) - 195, 350);
text('A', 0, 0);
pop();
push();
translate((width - (frameCount * 2.5) % (width / 40)) - 135, 350);
text('K', 0, 0);
pop();
push();
translate((width - (frameCount * 2) % (width / 40)) - 70, 350);
text('Y', 0, 0);
pop();
}