From f4e9414d632d28637a2036bfb5d27a6796ac2806 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E5=BE=B7=E5=AE=87?= Date: Fri, 18 Sep 2026 16:41:12 +0800 Subject: [PATCH] =?UTF-8?q?=E9=99=90=E5=AE=9A=E7=8A=B6=E6=80=81=E6=8F=90?= =?UTF-8?q?=E7=A4=BA=E5=8A=A8=E7=94=BB=E9=87=8D=E5=90=AF=E5=8A=A8=E8=8C=83?= =?UTF-8?q?=E5=9B=B4=20=E4=BB=85=E9=87=8D=E5=90=AF=E5=8A=A8=20UI=20?= =?UTF-8?q?=E7=BC=96=E8=BE=91=E5=99=A8=E5=85=B3=E6=B3=A8=E5=8A=A8=E7=94=BB?= =?UTF-8?q?=E8=80=8C=E4=B8=8D=E5=BD=B1=E5=93=8D=E8=BF=87=E6=B8=A1=E6=95=88?= =?UTF-8?q?=E6=9E=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../view/ui-editor/components/Inspector/InspectorSidebar.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/ai-game-creator-shell/src/view/ui-editor/components/Inspector/InspectorSidebar.tsx b/apps/ai-game-creator-shell/src/view/ui-editor/components/Inspector/InspectorSidebar.tsx index 22258f091..4d17e38cb 100644 --- a/apps/ai-game-creator-shell/src/view/ui-editor/components/Inspector/InspectorSidebar.tsx +++ b/apps/ai-game-creator-shell/src/view/ui-editor/components/Inspector/InspectorSidebar.tsx @@ -843,6 +843,8 @@ function NodeStageSelect({ // 仍能再次播放提示,而不是依赖 class/key 的重协调行为。 if (typeof statusRow.getAnimations === 'function') { for (const animation of statusRow.getAnimations()) { + const animationName = (animation as CSSAnimation).animationName; + if (!animationName?.startsWith('ui-editor-status-attention')) continue; animation.cancel(); animation.play(); }