I’m tying to figure out what the purpose is of the size parameter in the createFont() function? Is this just the default size that is used when drawing a text? Or is there more to it?
Asking because I also can influence the size of the text with the textSize() function as well. Or maybe asked in another way, is there a difference between
The first loading and creating a “Source Code Pro” font object of size 32pt, which is used then by setting it as textFont.
The second initially loading and creating a “Source Code Pro” font object of size 200pt and afterwards (by textSize(32)) it derives a new “Source Code Pro” font object of size 32 and use it.