Hey,
Im using GUILayout.Button to draw buttons for a menu, its working really well however i need to change the default text size.
function PauseMenu() {
style = new GUIStyle();
style.fontSize = 50;
if (GUILayout.Button ("Exit", style)) {
Application.Quit();
}
}
As above i have tried using styles however this doesn’t work. Can anyone please help me?
Thanks for the help