xxxxxxxxxx
//var font;
//function preload() {
//font = loadFont("IndieFlower.ttf");
//cannot get the font to load
//}
float x = 0;
float y = 0;
void setup () {
size(800,800);
// textFont(font);
}
void draw () {
background(0,0,0);
string s = "s h a t t e r e d";
x = x-0.1
textSize(sin(x)*100);
textAlign(CENTER,CENTER);
text(s, 200, 200, 400, 400);
fill(255,0,0)
}
/*
string v = "idk what i am doing";
textSize(sin(y)*100 + 100);
text(v, 200, 200, 400, 400);
*/