From 2571489ea41ce276f5fae508c06c12856be49f0e Mon Sep 17 00:00:00 2001 From: shenjianxing <”315615051@qq.com“> Date: Mon, 20 Jan 2025 10:58:51 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8E=BB=E6=8E=89=E6=97=A5=E5=BF=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assets/Scripts/Controller/StateMachineController.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/Assets/Scripts/Controller/StateMachineController.cs b/Assets/Scripts/Controller/StateMachineController.cs index 99c76788..98b8cc1b 100644 --- a/Assets/Scripts/Controller/StateMachineController.cs +++ b/Assets/Scripts/Controller/StateMachineController.cs @@ -102,7 +102,6 @@ public class StateMachineController : MonoSingleton { if (trans.condition == null || trans.condition.Check()) { - Debug.LogError(trans.from + "To:" + trans.to); item.Value.fsm.ChangeState(trans.to); break; }