xxxxxxxxxx
38
let txt = "";
const nope = undefined;
const sequence = "Divertida??????!!!!!!!!?Alegre??????!!!!!?Noble??????!!!!?Infatigable??????!!!!!!!!!!?Espontánea??????!!!!!!!!!?Luchadora????!!!!!!!!?Atrevida????!!!!!!!?";
const rate = 0;
function setup() {
createCanvas(windowWidth, windowHeight);
frameRate(10 * 1 / rate);
}
function draw() {
background(0);
stroke(255);
fill(255);
textSize(80);
textAlign(CENTER, CENTER);
text(txt, width / 2, height / 2);
if (frameCount % 10 === 1) {
const step = (frameCount + 1) / 10;
const char = sequence.charAt(step);
if (char === '?') return;
const charCode = char === '!' ? 8 : 0;
newChar(char, charCode);
}
}
function newChar(char, charCode) {
if (charCode === 8) {
const tempTXT = txt;
txt = "";
for (let i = 0; i < tempTXT.length - 1; i++) {
txt += tempTXT.charAt(i);
}
return;
}
if (char.length > 1) return;
txt += char;
}