I want to make the text bigger in my GUI. I tried searching for a answer but i cant find any. So im asking for help.
Hi, you are looking for GUIStyle.
-
Define guistyle
-
Edit params from inspector
-
Assign style to your gui element
public GUIStyle style;
private void OnGUI(){
GUI.Label(new Rect(0,0,100,25), “Hi”, style);
}