This commit is contained in:
JA
2026-06-20 19:34:23 +08:00
parent e5031c0068
commit d442805c3f
4136 changed files with 514641 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
@echo off
echo.
echo starting, please waiting...
echo =================================================
echo.
set /a sum=0
for /f "usebackq tokens=*" %%d in (`dir /s/b *.atlas`) do (
set /a sum=sum+1
"C:\Users\17966\Desktop\Spine3.8.75Pro\Spine3.8.75Pro\Spine.exe" -i "%%~dd%%~pd." -o "%%~dd%%~pdimages" -c "%%d"
echo "%%~nd.atlas" Done
echo.
)
echo =================================================
echo Done total: %sum%
echo.
pause