Process tileset.

This commit is contained in:
2025-09-12 12:43:56 -05:00
parent 46a94ecacd
commit 9b98181d28
18 changed files with 205 additions and 47 deletions

View File

@@ -64,7 +64,10 @@ def processPalettizedImage(asset):
f.write(data)
outImage = {
"imagePath": outputFileRelative,
"files": [ outputFilePath ],
'width': image.width,
'height': image.height,
}
return outImage
@@ -90,6 +93,9 @@ def processAlphaImage(asset):
f.write(data)
outImage = {
"files": [ outputFilePath ]
"imagePath": outputFileRelative,
"files": [ outputFilePath ],
'width': image.width,
'height': image.height,
}
return outImage