去掉日志

This commit is contained in:
shenjianxing 2025-01-20 10:58:51 +08:00
parent 378ebcde83
commit 2571489ea4

View File

@ -102,7 +102,6 @@ public class StateMachineController : MonoSingleton<StateMachineController>
{ {
if (trans.condition == null || trans.condition.Check()) if (trans.condition == null || trans.condition.Check())
{ {
Debug.LogError(trans.from + "To:" + trans.to);
item.Value.fsm.ChangeState(trans.to); item.Value.fsm.ChangeState(trans.to);
break; break;
} }