Max number of Fonts per sketch
in
Programming Questions
•
3 years ago
Is there are a maximum number of fonts you can load into a sketch?
—
http://jonobr1.com/
ie
- h1 = loadFont( "someFont.vlw" );
- h2 = loadFont( "aDifferentFont.vlw" );
- h3 = loadFont( "anotherFont.vlw" );
- h4 = loadFont( "yetAnotherFont.vlw" );
- h5 = loadFont( "anEvenDifferentFont.vlw" );
- h6 = loadFont( "theFinalValidFont.vlw" );
- h7 = loadFont( "unableToLoadFont.vlw" ); // Error: Unable to Load Font
—
http://jonobr1.com/
1