xxxxxxxxxx
20
function setup() {
createCanvas(400, 400);
scene = new Scene();
reel();
}
function draw() {
background(150);
}
function reel() {
let text1 = createText("Linear Transformation");
text1.position(30, 175);
text1.fill("white");
text1.size(35);
text1.play("fadeOut", 2);
text1.play("fadeIn", 2, 3);
text1.play("waveIn", 2, 6);
}