Minor visual fixes

This commit is contained in:
CaptainSegis 2018-08-16 18:53:49 -05:00
parent 18425ed8d3
commit a1aff31089
4 changed files with 5 additions and 4 deletions

View File

@ -83,8 +83,8 @@
End If
'HP indicator:
Core.SpriteBatch.DrawString(FontManager.MiniFont, p.HP & "/" & p.MaxHP, New Vector2(pos.X + 102, pos.Y + 37), New Color(0, 0, 0, _moveMenuAlpha))
Core.SpriteBatch.DrawString(FontManager.MiniFont, p.HP & "/" & p.MaxHP, New Vector2(pos.X + 100, pos.Y + 35), shinyHue)
Core.SpriteBatch.DrawString(FontManager.MiniFont, p.HP & "/" & p.MaxHP, New Vector2(pos.X + 102, pos.Y + 37 + 3), New Color(0, 0, 0, _moveMenuAlpha))
Core.SpriteBatch.DrawString(FontManager.MiniFont, p.HP & "/" & p.MaxHP, New Vector2(pos.X + 100, pos.Y + 35 + 3), shinyHue)
'EXP Bar:
If BattleScreen.CanReceiveEXP = True Then

View File

@ -827,7 +827,7 @@ nextIndex:
Next
End If
Core.SpriteBatch.DrawString(FontManager.MiniFont, "Battle system not final!", New Vector2(0, Core.windowSize.Height - 20), Color.White)
'Core.SpriteBatch.DrawString(FontManager.MiniFont, "Battle system not final!", New Vector2(0, Core.windowSize.Height - 20), Color.White)
TextBox.Draw()

View File

@ -211,7 +211,8 @@ Public Class PressStartScreen
If ControllerHandler.IsConnected() Then
text = "Press to start."
Else
text = "Press " & KeyBindings.EnterKey1.ToString() & ", " & KeyBindings.EnterKey2.ToString() & ", or primary mouse button to start."
text = "Press " & KeyBindings.EnterKey1.ToString().ToUpper & " to start."
'text = "Press " & KeyBindings.EnterKey1.ToString() & ", " & KeyBindings.EnterKey2.ToString() & ", or primary mouse button to start."
End If
Dim textSize As Vector2 = FontManager.GameJoltFont.MeasureString(text)

Binary file not shown.