sprite tool exports "formatted" TGA

meaning if alpha is zero, RGB is also zero
This commit is contained in:
minjaesong
2019-01-07 17:11:43 +09:00
parent df2973b713
commit 5fefb38383
3 changed files with 124 additions and 7 deletions

View File

@@ -48,14 +48,20 @@ jar {
task game(type: JavaExec) {
classpath sourceSets.main.runtimeClasspath
main = 'net.torvald.terrarum.AppLoader'
group = "Application"
description = "Launches the game. Should be the same as 'gradlew run'."
}
task spriteassembler(type: JavaExec) {
classpath sourceSets.main.runtimeClasspath
main = 'net.torvald.spriteassembler.SpriteAssemblerAppKt'
group = "Application"
description = "Launches the Sprite Assembler."
}
task csveditor(type: JavaExec) {
classpath sourceSets.main.runtimeClasspath
main = 'net.torvald.terrarum.debuggerapp.CSVEditor'
group = "Application"
description = "Launches the CSV Editor. (for Blocks?)"
}