Hey, I am making the menu's for my game, and the default font is rather small. Does anyone know how to increase the font size?
you should import a new font and then in import settings you can change the size of your font. search google for "free ttf fonts" and you will find many fonts on the net. i think there are some fonts in standard assets too.
increasing font size is simple. first find the font in the project view, select it then on the font texture, change the size, and to reduce edge pixelation, make the font size larger and the object smaller (if possible)
A fast way of changing the default font’s size, assuming you want to do it for a Label and in C#, is by writing, on the OnGUI() method:
GUI.skin.label.fontSize = 20;
For Buttons, it’s the same procedure, but using button instead of label.