feat(export): 新增 Cocos Creator 2D 一键导入 - #494
Conversation
chore: resolve directional generation merge conflicts
Expose and persist user-selected candidates for every direction, and preserve durable retry task references when recovery subscriptions fail.
…neration-backend # Conflicts: # frontend/src/pages/quick-start/index.tsx
|
The latest updates on your projects. Learn more about Vercel for GitHub. |
|
✅ 此 PR 已关联 issue,之前的提醒已自动标记为已解决。 |
Codecov Report❌ Patch coverage is
📢 Thoughts on this report? Let us know! |
| return { | ||
| id: String(action.id ?? `legacy-action-${index}`), | ||
| name: String(action.name ?? `action-${index}`), | ||
| export_name: String(action.name ?? `action-${index}`), |
There was a problem hiding this comment.
[P1] 从旧版实际路径恢复 export_name
这里把旧版 meta.json 的显示名直接当成 export_name,但旧导出器实际用经过清洗并附加方向的名称创建目录(例如动作名 Walk / Forward、方向 south 会落到 frames/Walk-Forward-south/)。随后 planImport() 会查找 frames/${export_name}/${frame.file},因此所有非默认方向或名称含空格/斜杠的旧包都会报 IMPORT_SOURCE_MISSING,与本函数声明的旧包兼容目标冲突。请从 atlas.file/帧文件名恢复原始导出目录名,或按旧导出器的命名规则重建并覆盖重复名场景。
|
建议拆几个 PR,这个没法review |
|
Deployment failed for project windup with the following error: Learn More: https://vercel.com/huyan-s-projects1?upgradeToPro=build-rate-limit |
| @@ -0,0 +1,117 @@ | |||
| # Cocos Creator 一键导出实现计划 | |||
| @@ -0,0 +1,139 @@ | |||
| # Cocos Creator 网页一键导入设计 | |||
|
@fennoai 扫描一下本次提交还夹带了什么与代码无关内容,如文档和压缩包 |
扫描结果已按固定范围
已运行扩展包校验: |
@删除掉无关文档,直接在本 PR 上修改 |
改动概述
为 Windup 增加 Cocos Creator 3.8.8 2D 资产一键导入能力:
.meta。验收结果
范围说明
本 PR 不修改后端。未包含内部过程文档、构建压缩包、本地记忆文件和测试临时输出。
Closes #94