Highlighted items glow in the dark, health bars are hidden when health is full, usernames and health bars are drawn at full brightness

This commit is contained in:
Regalis
2016-07-31 19:13:08 +03:00
parent 1a0451d0a8
commit 581a7d5d9f
6 changed files with 26 additions and 9 deletions
+3 -3
View File
@@ -317,8 +317,6 @@ namespace Barotrauma
null, null, null,
cam.Transform);
foreach (Character c in Character.CharacterList) c.DrawFront(spriteBatch);
Submarine.DrawFront(spriteBatch);
spriteBatch.End();
@@ -330,7 +328,9 @@ namespace Barotrauma
null, null, null,
cam.Transform);
if (Level.Loaded!=null) Level.Loaded.DrawFront(spriteBatch);
if (Level.Loaded != null) Level.Loaded.DrawFront(spriteBatch);
foreach (Character c in Character.CharacterList) c.DrawFront(spriteBatch);
spriteBatch.End();