public void ChangeState(StatesEnum state)
        {
            if (_currentState != null)
            {
                _currentState = null;
            }

            Debug.Log($"{name} новое состояние: {state}");

            _currentState = _stateFactory.CreateState(state);
            _currentState.OnStart();
        }