distinguishable item placeholder image

This commit is contained in:
minjaesong
2019-03-11 00:20:08 +09:00
parent e13c2ac59b
commit 341c35fab7
6 changed files with 41 additions and 19 deletions

View File

@@ -31,13 +31,13 @@ class EntryPoint : ModuleEntryPoint() {
// load common resources to the AssetsManager
AppLoader.resourcePool.addToLoadingList("$moduleName.items16", TextureRegionPack.javaClass) {
AppLoader.resourcePool.addToLoadingList("$moduleName.items16") {
TextureRegionPack(ModMgr.getGdxFile(moduleName, "items/items.tga"), 16, 16)
}
AppLoader.resourcePool.addToLoadingList("$moduleName.items24", TextureRegionPack.javaClass) {
AppLoader.resourcePool.addToLoadingList("$moduleName.items24") {
TextureRegionPack(ModMgr.getGdxFile(moduleName, "items/items24.tga"), 24, 24)
}
AppLoader.resourcePool.addToLoadingList("$moduleName.items48", TextureRegionPack.javaClass) {
AppLoader.resourcePool.addToLoadingList("$moduleName.items48") {
TextureRegionPack(ModMgr.getGdxFile(moduleName, "items/items48.tga"), 48, 48)
}