Added hint how to switch Pokémon summary page
This commit is contained in:
parent
37cc3a7556
commit
84a925b120
|
@ -490,6 +490,11 @@
|
|||
Canvas.DrawLine(New Color(84, 198, 216, CInt(255 * _interfaceFade * _pageFade)), New Vector2(DeltaX + 742 + i * 56, DeltaY + 268 - CSng((224 * _fadeIn) * IVcurrentPointM)), New Vector2(DeltaX + 742 + (i + 1) * 56, DeltaY + 268 - CSng((224 * _fadeIn) * IVnextPointM)), 2D)
|
||||
End If
|
||||
Next
|
||||
|
||||
'Switch Page Hint
|
||||
Canvas.DrawRectangle(New Rectangle(DeltaX + 350, DeltaY + 6, 300 + 24, 32), New Color(0, 0, 0, CInt(50 * _interfaceFade * _pageFade)))
|
||||
SpriteBatch.DrawString(FontManager.MainFont, ScriptVersion2.ScriptCommander.Parse("Press [<system.button(movebackward)>] to view moves").ToString, New Vector2(DeltaX + 350 + 22, DeltaY + 10), New Color(255, 255, 255, CInt(220 * _interfaceFade * _pageFade)))
|
||||
|
||||
End With
|
||||
End Sub
|
||||
|
||||
|
@ -558,6 +563,11 @@
|
|||
|
||||
'Description:
|
||||
SpriteBatch.DrawString(FontManager.MainFont, .Attacks(_moveIndex).Description.CropStringToWidth(FontManager.MainFont, 300), New Vector2(DeltaX + 720, DeltaY + 240), New Color(255, 255, 255, CInt(220 * _fadeIn * _pageFade * _moveFade)), 0.0F, New Vector2(0), 1.0F, SpriteEffects.None, 0.0F)
|
||||
|
||||
'Switch Page Hint
|
||||
Canvas.DrawRectangle(New Rectangle(DeltaX + 350, DeltaY + 6, 300 + 24, 32), New Color(0, 0, 0, CInt(50 * _interfaceFade * _pageFade)))
|
||||
SpriteBatch.DrawString(FontManager.MainFont, ScriptVersion2.ScriptCommander.Parse("Press [<system.button(moveforward)>] to view info").ToString, New Vector2(DeltaX + 350 + 22, DeltaY + 10), New Color(255, 255, 255, CInt(220 * _interfaceFade * _pageFade)))
|
||||
|
||||
End With
|
||||
End Sub
|
||||
|
||||
|
|
Loading…
Reference in New Issue