Not sure if someone else has posted this yet or not, but I can't seem to draw fonts larger than size ~48. According to cbk1994, this is only a bug on Windows.
For example:
PHP Code:
new GuiTextCtrl("test_text") {
profile = GuiBlueTextProfile;
useownprofile = true;
profile.fontSize = 72;
text = "Hello";
x = screenwidth / 2;
y = screenheight / 2;
}
will draw the exact same size as:
PHP Code:
new GuiTextCtrl("test_text") {
profile = GuiBlueTextProfile;
useownprofile = true;
profile.fontSize = 48;
text = "Hello";
x = screenwidth / 2;
y = screenheight / 2;
}