KO
|
EN
gitlite — search
Search
#typescript
#ai-agents
#ai
#dsh-plugin
#deepseek-harness
#open-source
#cli
#claude-code
#codex
#developer-tools
#react
#windows
csb2csd
★ 69
Open GitHub ↗
小工具,转换CocosStudio输出的csb文件为源文件,使之可继续编辑
Download README (.md)
Explore Similar Repositories
Murphy-Machine-Learning-A-Probabilistic-Perspective-Errata-and-Notes-4th-printing
:
Murphy's Machine Learning: A Probabilistic Perspective Errata (4th and later printings)
defcon-workshop
:
No description available.
RevealShader
:
Unity Shader experiment
raf-plus
:
requestAnimationFrame with queue management
3D-PRNN
:
Torch implementation of our ICCV 17 paper: "3D-PRNN, Generating Shape Primitives with Recurrent Neural Networks"
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
csb2csd
?
Download (.md)
# csb2csd 把CocosStudio输出的csb文件转换成可以继续编辑的csd源文件 # 使用说明 ```sh lua lily.lua test/TestAnimation.csb ./lily.lua 1.csb 2.csb ... ``` 注意:工具用到了Lua的flatbuffers库,链接为: https://github.com/DavidFeng/lua-flatbuffers 需要编译出buffer.so之后,工具才可以正常运行 # 命令格式参考: 调用TexturePack把pvr.ccz转换成png格式 ```lua local cmd = 'TexturePacker %s --sheet %s --data /tmp/wd/dummy.plist --algorithm Basic --allow-free-size --no-trim' for _, v in ipairs(arg) do local png_file_name = v:gsub("%.pvr.ccz", ".png") local s = cmd:format(v, png_file_name) --print(s) os.execute(s) end ```