This is the error I am getting :
“Font size and style overrides are only supported for dynamic fonts.”
I have read somewhere on the forums that when you import the font, you must set the character type to unicode… well, I am doing this and still getting that annoying error.
Would, and why, this be causing an error :
function OnGUI()
{
var gui : GUIStyle = new GUIStyle();
guiStyle.alignment = TextAnchor.MiddleCenter;
GUI.Label(rec, "My String wants to centered, but the default should be left aligned", guiStyle);
}
Thanks in advance