echo off echo *********************************************** echo CopyRight 2015-2020 wanggang. echo All rights reserved. echo 设置特效文件的叠加方式 echo *********************************************** :begin echo .. echo .. echo step1 echo 把需要改变的json 文件拖入当前窗口 set /p filePath= if "%filePath%"=="exit" Goto:end echo step1 echo 选择叠加方式:1.normal 2.add set /p type= if "%type%"=="exit" Goto:end if "%type%"=="1" Goto:runScript if "%type%"=="2" Goto:runScript Goto:begin :runScript lua.exe test.lua %filePath% %type% Goto:begin :end echo 退出当前程序
还没有仔细学习过批处理,这次给美术做工具第一次使用,一边搜一边写,配合lua脚本,十分快捷方便。