From 0e67fbf80ab016540f57faf5f6bbd373d41f5bf7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E5=BE=B7=E5=AE=87?= Date: Sat, 12 Sep 2026 02:12:15 +0800 Subject: [PATCH] =?UTF-8?q?=E5=81=9C=E6=AD=A2=E5=AF=B9=E6=9C=80=E7=BB=88?= =?UTF-8?q?=E5=B7=A5=E4=BD=9C=E6=B5=81=E6=AD=A5=E9=AA=A4=E9=87=8D=E5=A4=8D?= =?UTF-8?q?=E9=A2=84=E6=A3=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 资产分离作为最后步骤不再校验不存在的下一步 --- .../src/view/ui-editor/components/WorkflowChecks.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/ai-game-creator-shell/src/view/ui-editor/components/WorkflowChecks.ts b/apps/ai-game-creator-shell/src/view/ui-editor/components/WorkflowChecks.ts index cfff7ab03..5df5d0d9b 100644 --- a/apps/ai-game-creator-shell/src/view/ui-editor/components/WorkflowChecks.ts +++ b/apps/ai-game-creator-shell/src/view/ui-editor/components/WorkflowChecks.ts @@ -59,6 +59,6 @@ export function activeStepPrerequisiteIssues( case 'structure-recognition': return validateAssetSeparationPrerequisites(state); case 'asset-separation': - return validateAssetSeparationPrerequisites(state); + return []; } }