优化日志

This commit is contained in:
2025-04-10 11:57:13 +08:00
parent 0327583687
commit e94ecccb8b
36 changed files with 156 additions and 36 deletions

View File

@@ -21,7 +21,7 @@ namespace Stary.Evo.FiniteStateMachine
{
if (_fsmControllers.ContainsKey(typeof(T).Name))
{
Debug.LogError($"FSM控制器已存在_key:{typeof(T).Name}");
Debug.LogError($"UnityEvo:FSM控制器已存在_key:{typeof(T).Name}");
}
else
{
@@ -46,7 +46,7 @@ namespace Stary.Evo.FiniteStateMachine
}
else
{
Debug.LogError("该Id的FSMController不存在或已被销毁");
Debug.LogError("UnityEvo:该Id的FSMController不存在或已被销毁");
}
}
}