Other did on myh own
How to change GUI label size
i have looked everywhere but no solution has worked so i am hoping one of you can help me and thank you in advance. The text is too small and i want it lager but don't know how.
Here is my code:
void OnGUI()
{
GUI.color = Color.red;
GUILayout.Label("Score: " + score.ToString());
GUILayout.Label("Highscore: " + highscore);
}
Well, this doesn't really answer your question but... why are you using OnGUI ins$$anonymous$$d of Unity 5's new GUI system? The new one has much easier controls for these sorts of things and it's better optimized.
Agreed - the new UI system makes this sort of thing way easier, I recommend going with that approach to solve such problems.
Answer by Blade666 · Oct 07, 2015 at 11:02 PM
i am newbie at unity still and some tutorials i watched used this method
Look at tutorials from late 2014 onwards if you are wanting to learn anything UI related!