Is there any way to get the current PFont used by text() from the PApplet?
I'm using a library that is using a specific font, but doesn't "reset" the PFont back afterward. It would be nice if the library could do this. Something like this
I'm using a library that is using a specific font, but doesn't "reset" the PFont back afterward. It would be nice if the library could do this. Something like this
- PFont temp = textFont(); //get current font
- //do some stuff with it's own font
- textFont(temp); //reset the font back
1