From 7ba69600f6910d8de47f9cdeb616fa47afdd4b44 Mon Sep 17 00:00:00 2001 From: shenjianxing <”315615051@qq.com“> Date: Wed, 5 Feb 2025 14:56:37 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B0=9D=E8=AF=95=E4=BF=AE=E5=A4=8DLoading?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2=E8=B7=B3=E6=AD=A5=E4=B8=8D=E6=B6=88=E5=A4=B1?= =?UTF-8?q?=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assets/Scripts/Controller/OperationController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/Scripts/Controller/OperationController.cs b/Assets/Scripts/Controller/OperationController.cs index a9dfa608..b6817979 100644 --- a/Assets/Scripts/Controller/OperationController.cs +++ b/Assets/Scripts/Controller/OperationController.cs @@ -193,12 +193,12 @@ public class OperationController : MonoSingleton public void RunCurAction(IAction curAction, int targetIndex) { + TypeEventSystem.Global.Send(); if (curAction != null) { this.index = targetIndex; isStepRun = true; TypeEventSystem.Global.Send(new StepStatusOnChange() { curIndex = targetIndex, status = StepStatus.Start }); - TypeEventSystem.Global.Send(); curAction.Start(this, () => { isStepRun = false;