I’ve got a big GUI.Button , but the text inside it is really small . Is there anyway I can make it bigger ?
Sure, try to play around with the button’s GUIStyle when you draw it. It has a fontsize property you can change, see docs:
Not having seen your code, I don’t know how you’re drawing buttons right now, but GUI.Button has an overload that takes a custom GUIStyle. If you don’t use that overload, it will use the default button style. So you may need to create a new GUIStyle using the default one as the template and then edit the fontsize. Here’s a totally untested pseudo-code snippet to give you an idea:
GUIStyle customButton = new GUIStyle("button");
customButton.fontSize = whatever you want it to be;
if(GUI.Button(Rect, customButton)) ...
how do i make my button text bigger my gui button layout is like this
bool flag20 = GUI.Button(new Rect(Screen.width - 100, 950f, 80f, 60f), “OPEN”);