hacked the titlescreen to fix resize-related UI shit

This commit is contained in:
minjaesong
2017-11-01 15:46:09 +09:00
parent 948f922041
commit f5636fe0d3
4 changed files with 15 additions and 9 deletions

View File

@@ -38,7 +38,7 @@ class UIItemInventoryEquippedView(
lateinit var inventorySortList: Array<GameItem?>
private var rebuildList = true
val spriteViewBackCol: Color; get() = Color(0x303030_58.toInt())//Color(0xd4d4d4_ff.toInt())
val spriteViewBackCol: Color; get() = Color(0x404040_88.toInt())//Color(0xd4d4d4_ff.toInt())
private val itemGrid = Array<UIItemInventoryCellBase>(
2 * 5, {
@@ -51,7 +51,7 @@ class UIItemInventoryEquippedView(
itemImage = null,
mouseoverBackCol = Color(0x282828_ff),
mouseoverBackBlendMode = BlendMode.SCREEN,
backCol = Color(0x303030_58),
backCol = Color(0x404040_88),
backBlendMode = BlendMode.NORMAL,
drawBackOnNull = true
)