2

我目前正在编写一个批处理脚本来使用TexturePacker的命令行工具生成精灵表。

for /f "delims=" %%i in ('dir /b sprites') do (
    TexturePacker --format "json" --data "sheets/%%i.json" --sheet "sheets/%%i.png" "sprites/%%i"
)

到目前为止非常简单,但我想知道是否也可以从该工具生成 [*.tps] 文件。因此,如果有人想检查导出的属性,他们可以通过 TexturePackerGUI 进行。

4

2 回答 2

0

这是我用来在文件夹中构建所有 .tps 文件的 bash 脚本:

#!/bin/bash
for i in *.tps; do TexturePacker assets/texture_packer/$i; done
于 2018-04-19T20:56:28.970 回答
-1

此批处理脚本在文件夹中生成所有 *.tps:

for /R %%f in (*.tps) do "c:\Program Files\CodeAndWeb\TexturePacker\bin\TexturePacker.exe" %%f 
于 2018-11-09T09:03:30.370 回答