reinforced vault/container

This commit is contained in:
Anuken
2021-11-24 18:28:50 -05:00
parent b7ac1e1d74
commit 78590abfc0
11 changed files with 22 additions and 7 deletions

View File

@@ -250,8 +250,10 @@ task pack(dependsOn: [classes, configurations.runtimeClasspath]){
if(!file.isDirectory()) file.file.text = file.file.text.replace("4096", "2048")
}
//pack fallback 2048x2048 sprites
TexturePacker.process(new File(rootDir, "core/assets-raw/sprites_out/").absolutePath, new File(rootDir, "core/assets/sprites/fallback/").absolutePath, "sprites.aatls")
//pack fallback 2048x2048 sprites - disabled when debugging
if(!project.hasProperty("args")){
TexturePacker.process(new File(rootDir, "core/assets-raw/sprites_out/").absolutePath, new File(rootDir, "core/assets/sprites/fallback/").absolutePath, "sprites.aatls")
}
}
}