memory gauge on teleporter world search

This commit is contained in:
minjaesong
2023-07-12 21:30:50 +09:00
parent c77f1ffd23
commit 7993ccd2e5
7 changed files with 96 additions and 38 deletions

View File

@@ -132,7 +132,10 @@ class UILoadManage(val full: UILoadSavegame) : UICanvas() {
full.playerButtonSelected?.let { button ->
screencap?.texture?.tryDispose()
button.savegameThumbnailPixmap?.let {
screencap = TextureRegion(Texture(it))
Texture(it).also {
it.setFilter(Texture.TextureFilter.Linear, Texture.TextureFilter.Linear)
screencap = TextureRegion(it)
}
}
}
}