I am trying to get the font size bigger…I got that working but when that happened the textfield disappeared…it still works but there is no indication that there is a textfield there.
Any ideas why this is happening?
void OnGUI()
{
GUI.color = Color.white;
GUIStyle myFont = new GUIStyle();
myFont.fontSize = 30;
myFont.normal.textColor = Color.white;
PlayersName = GUI.TextField(new Rect(Screen.width / 2 - 75, Screen.height / 2 - 25, 150, 25), PlayersName, myFont);
}