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; }