xxxxxxxxxx
29
let poem;
let currentCharacter = 0;
function preload() {
poem = loadStrings('poem.txt');
// split into lines
}
function setup() {
createCanvas(400, 400);
textSize(12);
textFont('Courier New');
poem = poem.join(' '); // Join all lines into a single string
}
function draw() {
background(250);
console.log(poem);
let currentString = poem.substring(0, currentCharacter);
if (currentCharacter == '#'){
}
text(currentString, 50, 50, width - 100, height - 100);
currentCharacter += 0.25; // Increased from 0.1 for faster animation
}