xxxxxxxxxx
29
let font
let curIndex = 0;
function preload() {
font = loadFont('/EBGaramond-VariableFont_wght.ttf');
echoesLines = loadStrings('send help.txt');
}
function setup() {
createCanvas(600, 900, WEBGL);
textFont(font);
textSize(15);
fill(255);
}
function draw() {
background(0);
let time = millis();
rotateX(time / 2000);
//rotateZ(time / 1234);
for (let i = 0; i < echoesLines.length; i++){
text(echoesLines[i], -225, -150+i*10, 400, 400);
}
}