Created
March 11, 2016 13:38
-
-
Save dyln/4225754847a46c66bfd4 to your computer and use it in GitHub Desktop.
font decomp
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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