Skip to content

Instantly share code, notes, and snippets.

@dyln
Created March 11, 2016 13:38
Show Gist options
  • Select an option

  • Save dyln/4225754847a46c66bfd4 to your computer and use it in GitHub Desktop.

Select an option

Save dyln/4225754847a46c66bfd4 to your computer and use it in GitHub Desktop.
font decomp
PFont yazi;
void setup(){
size(800,600);
yazi = loadFont("GillSans-48.vlw");
}
void draw(){
background(255);
textFont(yazi, 48);
fill(255,0,0);
text("WASSUP",100,100);
fill(0,255,0);
textFont(yazi,100);
text("feelin good man", 100,250);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment