Minor visual fixes
This commit is contained in:
parent
18425ed8d3
commit
a1aff31089
|
@ -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
|
||||
|
|
|
@ -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()
|
||||
|
||||
|
|
|
@ -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.
Loading…
Reference in New Issue