(5c867d67d) Added a couple of missing lines to EnglishVanilla

This commit is contained in:
Joonas Rikkonen
2019-05-16 05:59:21 +03:00
parent 9ae25de749
commit 018f20e0f0
16 changed files with 215 additions and 263 deletions
@@ -657,10 +657,10 @@ namespace Barotrauma
pos.Y -= 5 * zoom;
Vector2 size = GUI.LargeFont.MeasureString(location.Name);
GUI.Style.GetComponentStyle("OuterGlow").Sprites[GUIComponent.ComponentState.None][0].Draw(
spriteBatch, new Rectangle((int)pos.X - 30, (int)pos.Y, (int)size.X + 60, (int)(size.Y + 25 * GUI.Scale)), Color.Black * hudOpenState * 0.7f);
spriteBatch, new Rectangle((int)pos.X - 30, (int)pos.Y, (int)size.X + 60, (int)size.Y + 25), Color.Black * hudOpenState * 0.7f);
GUI.DrawString(spriteBatch, pos,
location.Name, Color.White * hudOpenState * 1.5f, font: GUI.LargeFont);
GUI.DrawString(spriteBatch, pos + Vector2.UnitY * 25 * GUI.Scale,
GUI.DrawString(spriteBatch, pos + Vector2.UnitY * 25,
location.Type.Name, Color.White * hudOpenState * 1.5f);
}