xxxxxxxxxx
27
let t2 = 0;
let mojFont;
let mojFont2;
function setup() {
createCanvas(500, 200);
mojFont = loadFont("fonts/Roboto-Medium.ttf");
mojFont2 = loadFont("fonts/Roboto-Black.otf");
}
function draw() {
t2 += 0.1;
background(160);
fill(255);
textFont(mojFont2);
textSize(28);
let vrabac = "Једва чекам пролеће";
let t1 = 0;
for(let i = 0; i < vrabac.length; i++) {
t1 += 0.1;
let x = 40 + i * 20;
let y = height/2 + map(noise(t1, t2), 0, 1, -60, 60);
text(vrabac[i], x, y);
}
}