Question

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...
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";
};
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.
Drop%20Shadow%20Question.png

Am I not seeing something that places that drop shadow?
 

Volt Cruelerz

Legions Developer
Lol there are multiple files that work together to achieve a common end. You found one of those files. There are others.
 
Top