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