Arch
Legions Developer
So this has been bothering me (for some odd reason). So here's the profiles of the speed display, clock, and ammo...
They all look the same but in-game the speed display and clock both have drop shadows behind the text while the ammo does not.
Am I not seeing something that places that drop shadow?
Code:
new GuiControlProfile(SpeedDisplayProfile : BasicTextProfile)
{
fontType = $Pref::Hud::DefaultBoldFont;
fontSize = $Pref::Hud::SmallFontSize;
justify = "Center";
};
Code:
new GuiControlProfile(ClockProfile : BasicTextProfile)
{
fontType = $Pref::Hud::DefaultBoldFont;
fontSize = $Pref::Hud::SmallFontSize;
justify = "Center";
};
Code:
new GuiControlProfile(AmmoDisplayProfile : BasicTextProfile)
{
fontType = $Pref::Hud::DefaultBoldFont;
fontSize = $Pref::Hud::SmallFontSize;
justify = "Right";
};

Am I not seeing something that places that drop shadow?