It can, @Toffer90 would need to revert to old font settings (original BTS) as low res default font.ok that solved that, now this:
pic 1 words, see pic . . still dont like the pop-when a new buildable unit is avail, cant it be like it used to??
Code:
{
GFont .Size1_Normal = GFont("Sylfaen", "Regular", 12, GFlags(GFontFeature, GFC_FONT_ALPHA));
GFont .Size2_Normal = GFont("Sylfaen", "Regular", 14, GFlags(GFontFeature, GFC_FONT_ALPHA));
GFont .Size2_Bold = GFont("Sylfaen", "Bold", 14, GFlags(GFontFeature, GFC_FONT_BOLD, GFC_FONT_ALPHA));
GFont .Size2_Italic = GFont("Sylfaen", "Italic", 14, GFlags(GFontFeature, GFC_FONT_ITALIC, GFC_FONT_ALPHA), 0, GRectMargin(1));
GFont .Size3_Normal = GFont("Sylfaen", "Regular", 16, GFlags(GFontFeature, GFC_FONT_ALPHA));
GFont .Size3_Bold = GFont("Sylfaen", "Bold", 16, GFlags(GFontFeature, GFC_FONT_BOLD, GFC_FONT_ALPHA));
GFont .Size4_Normal = GFont("Sylfaen", "Regular", 22, GFlags(GFontFeature, GFC_FONT_ALPHA));
GFont .Size4_Bold = GFont("Sylfaen", "Bold", 22, GFlags(GFontFeature, GFC_FONT_BOLD, GFC_FONT_ALPHA));
}
So in Toffer's way it would be:
Code:
{
GFont .Size0_Normal = GFont("Linux Libertine G","Regular", 12, GFlags(GFontFeature, GFC_FONT_ALPHA), 0, GRectMargin(2));
GFont .Size0_Bold = GFont("Linux Libertine G","Semi Bold",12, GFlags(GFontFeature, GFC_FONT_ALPHA, GFC_FONT_BOLD), 0, GRectMargin(2));
GFont .Size1_Normal = GFont("Linux Libertine G","Regular", 13, GFlags(GFontFeature, GFC_FONT_ALPHA), 0, GRectMargin(2));
GFont .Size1_Bold = GFont("Linux Libertine G","Semi Bold",13, GFlags(GFontFeature, GFC_FONT_ALPHA, GFC_FONT_BOLD), 0, GRectMargin(2));
GFont .Size2_Normal = GFont("Linux Libertine G","Regular", 14, GFlags(GFontFeature, GFC_FONT_ALPHA), 0, GRectMargin(2));
GFont .Size2_Bold = GFont("Linux Libertine G","Semi Bold",14, GFlags(GFontFeature, GFC_FONT_ALPHA, GFC_FONT_BOLD), 0, GRectMargin(2));
GFont .Size3_Normal = GFont("Linux Libertine G","Regular", 16, GFlags(GFontFeature, GFC_FONT_ALPHA), 0, GRectMargin(2));
GFont .Size3_Bold = GFont("Linux Libertine G","Semi Bold",16, GFlags(GFontFeature, GFC_FONT_ALPHA, GFC_FONT_BOLD), 0, GRectMargin(2));
GFont .Size4_Normal = GFont("Linux Libertine G","Regular", 22, GFlags(GFontFeature, GFC_FONT_ALPHA), 100, GRectMargin(2));
GFont .Size4_Bold = GFont("Linux Libertine G","Semi Bold",22, GFlags(GFontFeature, GFC_FONT_ALPHA, GFC_FONT_BOLD),200, GRectMargin(2));
}