Compare commits

..

No commits in common. "da7c534bea5890c2ad50ffc5d40693567bb11a1f" and "1b232fd2f800706e085c2ba487fe21a1e7d78dd4" have entirely different histories.

2 changed files with 1 additions and 2 deletions

View File

@ -39,11 +39,11 @@ namespace QFramework
public void OnExecute(float dt) public void OnExecute(float dt)
{ {
this.Finish();
if (datas.ContainsKey("name")) if (datas.ContainsKey("name"))
{ {
OperationController.Instance.ChangeOperation(datas["name"]); OperationController.Instance.ChangeOperation(datas["name"]);
} }
this.Finish();
OnFinished?.Invoke(); OnFinished?.Invoke();
} }

View File

@ -106,7 +106,6 @@ public class OperationController : MonoSingleton<OperationController>
AddStep(item); AddStep(item);
} }
TypeEventSystem.Global.Send<OnOperationChanged>(); TypeEventSystem.Global.Send<OnOperationChanged>();
OnNext(default);
} }
} }