Hello Unity community!
I’ve been recently stuck on this problem for quite a while. I am trying to increase the size of the text on a GUILayout Button.
//What would I need to add here to increase the size of the text "---New Game---"?
if (GUILayout.Button("---New game---") )
{
}
I’ve tried to use guiText.fontSize = 25; but it refers to a GUI text and not a button.
Any suggestions? Thanks guys!