another text pos change

This commit is contained in:
minjaesong
2023-06-06 18:23:28 +09:00
parent 8d0d84fbf8
commit 3d5fd984d7

View File

@@ -276,7 +276,7 @@ class UIWorldPortalListing(val full: UIWorldPortal) : UICanvas() {
batch.color = Color.WHITE
worldTexts.forEachIndexed { index, (icon, str) ->
batch.draw(icon, textXpos - iconSizeGap + 6, y + thumbh + 3+10 + textualListHeight * index)
App.fontGame.draw(batch, str, textXpos + 6f, y + thumbh + 3+10 + textualListHeight * index)
App.fontGame.draw(batch, str, textXpos + 6f, y + thumbh + 3+10 + textualListHeight * index - 2f)
}
// size indicator on the memory gauge
Toolkit.fillArea(batch, memoryGaugeXpos, memoryGaugeYpos, (memoryGaugeWidth * (selected?.worldInfo!!.dimensionInChunks / chunksMax.toFloat())).ceilInt(), buttonHeight)