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.
|
|
|
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 |
改动概述
为 Windup 增加 Cocos Creator 3.8.8 2D 资产一键导入能力:
.meta。验收结果
范围说明
本 PR 不修改后端。未包含本地记忆文件和测试临时输出。