xxxxxxxxxx
37
class Text {
constructor(txt, y) {
this.text = txt;
this.y = y;
}
draw() {
textAlign(CENTER,CENTER);
text(this.txt, width/2, this.y);
}
update() {
this.y += 2;
}
}
let texts = []
function setup() {
createCanvas(400, 400);
texts.push(new Text("&", 0));
}
function draw() {
background(220);
let topmostText = texts[texts.length - 1 ]
if (topmostText.y > 0) {
let txt = new Text ('hi', topmostText.y - 50);
texts.push(txt);
}
for (let txt of texts) {
txt.draw();
txt.update();
}
}